24 lines
640 B
Python
24 lines
640 B
Python
# Generated by Django 3.2.9 on 2021-12-03 03:44
|
|
|
|
from django.db import migrations, models
|
|
import django_quill.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Boat',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=80)),
|
|
('model', models.CharField(max_length=80)),
|
|
('description', django_quill.fields.QuillField()),
|
|
],
|
|
),
|
|
]
|