Add migrations back to the repo

This commit is contained in:
Sika Production
2017-03-29 19:01:55 +03:00
parent 6c74ef0ea4
commit 63a28e872e
10 changed files with 272 additions and 3 deletions
@@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2017-02-06 10:35
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('infoscreen', '0001_initial'),
]
operations = [
migrations.CreateModel(
name='CoffeeInfoItem',
fields=[
('infoitem_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='infoscreen.InfoItem')),
],
bases=('infoscreen.infoitem',),
),
]