21 lines
496 B
Python
21 lines
496 B
Python
# Generated by Django 3.2.4 on 2021-06-22 16:14
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cookbook', '0138_auto_20210617_1602'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='space',
|
|
name='created_at',
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
|
|
preserve_default=False,
|
|
),
|
|
]
|