diff --git a/api/__pycache__/settings.cpython-313.pyc b/api/__pycache__/settings.cpython-313.pyc index 2e6ac9b1..6059d153 100644 Binary files a/api/__pycache__/settings.cpython-313.pyc and b/api/__pycache__/settings.cpython-313.pyc differ diff --git a/api/__pycache__/urls.cpython-313.pyc b/api/__pycache__/urls.cpython-313.pyc index cae8de97..cfdfbd89 100644 Binary files a/api/__pycache__/urls.cpython-313.pyc and b/api/__pycache__/urls.cpython-313.pyc differ diff --git a/app/__pycache__/models.cpython-313.pyc b/app/__pycache__/models.cpython-313.pyc index 33f77f99..be2482fe 100644 Binary files a/app/__pycache__/models.cpython-313.pyc and b/app/__pycache__/models.cpython-313.pyc differ diff --git a/app/migrations/0003_alter_stepaction_unique_together_and_more.py b/app/migrations/0003_alter_stepaction_unique_together_and_more.py new file mode 100644 index 00000000..506e4290 --- /dev/null +++ b/app/migrations/0003_alter_stepaction_unique_together_and_more.py @@ -0,0 +1,37 @@ +# Generated by Django 5.1.7 on 2026-03-19 05:05 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('app', '0002_alter_dealer_rights_unique_together_and_more'), + ] + + operations = [ + migrations.AlterUniqueTogether( + name='stepaction', + unique_together=None, + ), + migrations.RemoveField( + model_name='stepaction', + name='workflow', + ), + migrations.RemoveField( + model_name='workflow', + name='initial_step', + ), + migrations.DeleteModel( + name='Rule', + ), + migrations.DeleteModel( + name='Utility', + ), + migrations.DeleteModel( + name='StepAction', + ), + migrations.DeleteModel( + name='Workflow', + ), + ]