Add App Contracts
This commit is contained in:
19
contracts/migrations/0003_alter_contract_company.py
Normal file
19
contracts/migrations/0003_alter_contract_company.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user