22 lines
555 B
Python
22 lines
555 B
Python
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('epic', '0004_alter_room_gate_status'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='gateslot',
|
||
|
|
name='debited_token_type',
|
||
|
|
field=models.CharField(max_length=8, null=True, blank=True),
|
||
|
|
),
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='gateslot',
|
||
|
|
name='debited_token_expires_at',
|
||
|
|
field=models.DateTimeField(null=True, blank=True),
|
||
|
|
),
|
||
|
|
]
|