mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 21:27:49 +02:00
Initial commit
This commit is contained in:
19
dcc/roster/migrations/0005_alter_cab_manufacturer.py
Normal file
19
dcc/roster/migrations/0005_alter_cab_manufacturer.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 4.0 on 2021-12-15 22:29
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('roster', '0004_alter_cab_manufacturer_alter_cab_production_year_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='cab',
|
||||
name='manufacturer',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='roster.manufacturer'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user