blob: a76d23054f02adedd0acaab8246449f4462912cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Generated by Django 4.2.7 on 2023-11-15 15:02
import datetime
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('gtd', '0007_alter_wiredpost_date_last_pub'),
]
operations = [
migrations.AlterField(
model_name='wiredpost',
name='date_last_pub',
field=models.DateField(default=datetime.datetime(2023, 11, 15, 15, 2, 22, 531344)),
),
]
|