forked from Kamva-Academy/Kamva-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add is_deleted field to Program and FSM models
- Loading branch information
1 parent
c8b3a46
commit 1c023d0
Showing
4 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
apps/fsm/migrations/0133_fsm_is_deleted_program_is_deleted.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.1.3 on 2024-05-26 12:37 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('fsm', '0132_delete_playerworkshop'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='fsm', | ||
name='is_deleted', | ||
field=models.BooleanField(default=False), | ||
), | ||
migrations.AddField( | ||
model_name='program', | ||
name='is_deleted', | ||
field=models.BooleanField(default=False), | ||
), | ||
] |
This file contains 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
This file contains 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
This file contains 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