bookwyrm-mastodon/bookwyrm/migrations/0033_siteinvite_created_dat...

23 lines
533 B
Python
Raw Permalink Normal View History

2021-01-05 14:37:48 -05:00
# Generated by Django 3.0.7 on 2021-01-05 19:08
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
2021-03-08 11:49:10 -05:00
("bookwyrm", "0032_auto_20210104_2055"),
2021-01-05 14:37:48 -05:00
]
operations = [
migrations.AddField(
2021-03-08 11:49:10 -05:00
model_name="siteinvite",
name="created_date",
field=models.DateTimeField(
auto_now_add=True, default=django.utils.timezone.now
),
2021-01-05 14:37:48 -05:00
preserve_default=False,
),
]