20 lines
529 B
Python
20 lines
529 B
Python
|
|
# Generated by Django 6.0.1 on 2026-02-18 20:08
|
||
|
|
|
||
|
|
import django.db.models.deletion
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('contracts', '0002_contract_pub_date_txt_alter_contract_pub_date'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='contract',
|
||
|
|
name='company',
|
||
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='contracts.company'),
|
||
|
|
),
|
||
|
|
]
|