diff --git a/apps/workspaces/migrations/0039_alter_workspacegeneralsettings_change_accounting_period.py b/apps/workspaces/migrations/0039_alter_workspacegeneralsettings_change_accounting_period.py new file mode 100644 index 00000000..a9a8b183 --- /dev/null +++ b/apps/workspaces/migrations/0039_alter_workspacegeneralsettings_change_accounting_period.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.14 on 2024-11-18 04:41 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('workspaces', '0038_alter_workspace_onboarding_state'), + ] + + operations = [ + migrations.AlterField( + model_name='workspacegeneralsettings', + name='change_accounting_period', + field=models.BooleanField(default=True, help_text='Change the accounting period'), + ), + ]