24 lines
575 B
Python
24 lines
575 B
Python
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('epic', '0029_fix_schizo_cautions'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='sigreservation',
|
|
name='seat',
|
|
field=models.ForeignKey(
|
|
blank=True,
|
|
null=True,
|
|
on_delete=django.db.models.deletion.SET_NULL,
|
|
related_name='sig_reservation',
|
|
to='epic.tableseat',
|
|
),
|
|
),
|
|
]
|