mirror of https://github.com/ctk-hq/ctk
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
578 B
Python
25 lines
578 B
Python
# Generated by Django 3.0.4 on 2020-06-28 11:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('api', '0011_recipe_desc'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='recipe',
|
|
name='private',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.AddField(
|
|
model_name='recipe',
|
|
name='raw_url',
|
|
field=models.CharField(default='', max_length=500),
|
|
preserve_default=False,
|
|
),
|
|
]
|