28 lines
973 B
Python
28 lines
973 B
Python
|
# Generated by Django 4.2.5 on 2023-10-09 04:21
|
||
|
|
||
|
from django.conf import settings
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('core', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Recipe',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('title', models.CharField(max_length=255)),
|
||
|
('description', models.TextField(blank=True)),
|
||
|
('time_minutes', models.IntegerField()),
|
||
|
('price', models.DecimalField(blank=True, decimal_places=2, max_digits=5)),
|
||
|
('link', models.CharField(blank=True, max_length=255)),
|
||
|
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
||
|
],
|
||
|
),
|
||
|
]
|