Initial commit (Clean history)
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
# Generated by Django 5.1.7 on 2025-07-24 12:09
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0197_contract_link'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='contract',
|
||||
name='document',
|
||||
field=models.JSONField(null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='contract',
|
||||
name='status',
|
||||
field=models.ForeignKey(default=1, null=True, on_delete=django.db.models.deletion.PROTECT, related_name='+', to='app.contract_status'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user