23 lines
662 B
Python
23 lines
662 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='CountdownItem',
|
|
fields=[
|
|
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
|
('name', models.CharField(default='', max_length=64)),
|
|
('source', models.CharField(default='', max_length=200)),
|
|
('at_time', models.DateTimeField()),
|
|
('created_time', models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|