فهرست منبع

rigenerata tabella comunicazione

Mauro 1 سال پیش
والد
کامیت
3583bc6b01
1فایلهای تغییر یافته به همراه5 افزوده شده و 5 حذف شده
  1. 5 5
      comunicazione/migrations/0001_initial.py

+ 5 - 5
comunicazione/migrations/0001_initial.py

@@ -1,4 +1,4 @@
-# Generated by Django 5.0.7 on 2024-08-11 09:30
+# Generated by Django 5.1.1 on 2024-09-19 19:33
 
 from django.db import migrations, models
 
@@ -15,13 +15,13 @@ class Migration(migrations.Migration):
             name='Comunicazione',
             fields=[
                 ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
-                ('indice', models.CharField(max_length=32)),
-                ('valore', models.CharField(max_length=128, null=True)),
-                ('nota', models.CharField(max_length=256, null=True)),
+                ('mittente', models.CharField(max_length=256, null=True)),
+                ('soggetto', models.CharField(max_length=256, null=True)),
+                ('corpo', models.CharField(max_length=2048, null=True)),
             ],
             options={
                 'db_table': 'Comunicazione',
-                'ordering': ['indice'],
+                'ordering': ['soggetto'],
                 'managed': False,
             },
         ),