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