collapsing all of dr_botzo one directory
This commit is contained in:
21
pi/migrations/0001_initial.py
Normal file
21
pi/migrations/0001_initial.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='PiLog',
|
||||
fields=[
|
||||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
||||
('count_inside', models.PositiveIntegerField()),
|
||||
('count_total', models.PositiveIntegerField()),
|
||||
('created', models.DateTimeField(auto_now_add=True)),
|
||||
],
|
||||
),
|
||||
]
|
||||
17
pi/migrations/0002_auto_20150521_2204.py
Normal file
17
pi/migrations/0002_auto_20150521_2204.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('pi', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='pilog',
|
||||
options={'get_latest_by': 'created'},
|
||||
),
|
||||
]
|
||||
0
pi/migrations/__init__.py
Normal file
0
pi/migrations/__init__.py
Normal file
Reference in New Issue
Block a user