Interface tweaks

This commit is contained in:
Mike Young
2019-11-29 21:41:23 -05:00
parent 7093a92ec3
commit df840557b1
3 changed files with 38 additions and 7 deletions

View File

@@ -0,0 +1,30 @@
# Generated by Django 2.2.7 on 2019-11-28 19:24
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Books',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('title', models.CharField(max_length=255)),
('author', models.CharField(max_length=255, null=True)),
('categories', models.CharField(max_length=255, null=True)),
('cover', models.BinaryField(editable=True, null=True)),
('pages', models.IntegerField(null=True)),
('progress', models.IntegerField(null=True)),
('file_name', models.CharField(max_length=255)),
],
options={
'db_table': 'books',
},
),
]