first commit
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Generated by Django 5.2.7 on 2025-11-01 11:15
|
||||
# Generated by Django 6.0 on 2025-12-24 11:22
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.conf import settings
|
||||
@@ -24,8 +24,9 @@ class Migration(migrations.Migration):
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
('first_name', models.CharField(max_length=100)),
|
||||
('last_name', models.CharField(max_length=500)),
|
||||
('phone', models.DecimalField(decimal_places=0, max_digits=20)),
|
||||
('phone', models.DecimalField(decimal_places=0, max_digits=11)),
|
||||
('double_workload', models.BooleanField(default=False)),
|
||||
('last_visit', models.DateField(blank=True, null=True)),
|
||||
('feed_back', models.BooleanField(default=False)),
|
||||
('msg_3_months', models.BooleanField(default=False)),
|
||||
('msg_6_months', models.BooleanField(default=False)),
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
# Generated by Django 5.2.8 on 2025-12-26 15:30
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('Base', '0003_alter_chartofaccount_prof'),
|
||||
('Client', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='client',
|
||||
name='late',
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='client',
|
||||
name='responsable',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='ClientResponsable', to='Client.client'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='client',
|
||||
name='professional',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.DO_NOTHING, related_name='ClientProfessional', to='Base.professional'),
|
||||
),
|
||||
]
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user