Commit bd87da9a authored by Jan Enzo Salvador's avatar Jan Enzo Salvador

Created migrations for the built models of bookshelf app

parent 46ad5957
# Generated by Django 4.1.7 on 2023-03-28 15:26
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Author',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('first_name', models.CharField(default='', max_length=50)),
('last_name', models.CharField(default='', max_length=30)),
('age', models.IntegerField(default=0)),
('nationality', models.CharField(default='', max_length=30)),
('bio', models.TextField(default='', max_length=700)),
],
),
migrations.CreateModel(
name='Books',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('title', models.CharField(default='', max_length=50)),
('publisher', models.CharField(default='', max_length=50)),
('year_published', models.IntegerField(default=0)),
('ISBN', models.IntegerField(default=0)),
('blurb', models.TextField(default='', max_length=200)),
('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='bookshelf.author')),
],
),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment