|
|
@@ -0,0 +1,33 @@
|
|
|
+# Generated by Django 5.1.2 on 2025-01-05 20:39
|
|
|
+
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('amministratore', '0002_amministratore_uuid'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='amministratore',
|
|
|
+ name='edit_azienda',
|
|
|
+ field=models.BooleanField(default=True),
|
|
|
+ ),
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='amministratore',
|
|
|
+ name='edit_documento',
|
|
|
+ field=models.BooleanField(default=True),
|
|
|
+ ),
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='amministratore',
|
|
|
+ name='edit_sede',
|
|
|
+ field=models.BooleanField(default=True),
|
|
|
+ ),
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='amministratore',
|
|
|
+ name='edit_utente',
|
|
|
+ field=models.BooleanField(default=True),
|
|
|
+ ),
|
|
|
+ ]
|