This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Here's the full flow with every model touched and every relation made at each step. | |
| --- | |
| Step 1 — User Submits Proposal | |
| Triggered: POST /vdc/modules/ | |
| ModuleGenerationJob created | |
| ├── status = 'pending' | |
| ├── request_text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| BaseModel (abstract — inherited by all) | |
| BaseModel | |
| ├── created_at DateTimeField (auto on create) | |
| ├── updated_at DateTimeField (auto on every save) | |
| ├── is_deleted BooleanField (default False) | |
| └── deleted_at DateTimeField (null, set on soft delete) | |
| --- |