|
|
@@ -0,0 +1,26 @@
|
|
|
+# Generated by Django 5.1.3 on 2024-11-28 16:38
|
|
|
+
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('azienda', '0003_azienda_azienda_azi_partita_d03251_idx'),
|
|
|
+ ('utente', '0011_remove_utente_unique_utente_utente_unique_utente'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.RemoveConstraint(
|
|
|
+ model_name='utente',
|
|
|
+ name='unique-utente',
|
|
|
+ ),
|
|
|
+ migrations.RemoveField(
|
|
|
+ model_name='utente',
|
|
|
+ name='admin',
|
|
|
+ ),
|
|
|
+ migrations.AddConstraint(
|
|
|
+ model_name='utente',
|
|
|
+ constraint=models.UniqueConstraint(fields=('nome', 'codicefiscale'), name='unique-utente'),
|
|
|
+ ),
|
|
|
+ ]
|