diff --git a/compile_server/app/migrations/0003_book.py b/compile_server/app/migrations/0003_book.py new file mode 100644 index 0000000..2da1bf7 --- /dev/null +++ b/compile_server/app/migrations/0003_book.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.7 on 2017-11-27 22:13 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('app', '0002_example_main'), + ] + + operations = [ + migrations.CreateModel( + name='Book', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('directory', models.TextField()), + ('subpath', models.TextField()), + ('description', models.TextField()), + ('title', models.TextField()), + ], + ), + ]