1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Generated by Django 4.2.7 on 2024-01-17 14:23
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('gtd', '0027_wiredpost_category'),
]
operations = [
migrations.CreateModel(
name='WiredUpdate',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(blank=True, max_length=20, null=True)),
('date', models.DateField(blank=True, null=True)),
],
options={
'ordering': ('-date',),
},
),
]
|