20 lines
440 B
Python
20 lines
440 B
Python
|
|
# Generated by Django 6.0 on 2026-03-13 20:32
|
||
|
|
|
||
|
|
import datetime
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('epic', '0001_initial'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='room',
|
||
|
|
name='renewal_period',
|
||
|
|
field=models.DurationField(blank=True, default=datetime.timedelta(days=7), null=True),
|
||
|
|
),
|
||
|
|
]
|