collapsing all of dr_botzo one directory

This commit is contained in:
2017-02-04 11:48:55 -06:00
parent 38d14bb0d2
commit cd23f062a9
194 changed files with 0 additions and 0 deletions

View 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)),
],
),
]

View 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'},
),
]

View File