collapsing all of dr_botzo one directory
This commit is contained in:
22
countdown/migrations/0001_initial.py
Normal file
22
countdown/migrations/0001_initial.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- 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)),
|
||||
],
|
||||
),
|
||||
]
|
||||
17
countdown/migrations/0002_remove_countdownitem_source.py
Normal file
17
countdown/migrations/0002_remove_countdownitem_source.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('countdown', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='countdownitem',
|
||||
name='source',
|
||||
),
|
||||
]
|
||||
0
countdown/migrations/__init__.py
Normal file
0
countdown/migrations/__init__.py
Normal file
Reference in New Issue
Block a user