mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
modal + link caching
This commit is contained in:
28
cookbook/migrations/0004_auto_20180205_2316.py
Normal file
28
cookbook/migrations/0004_auto_20180205_2316.py
Normal file
@@ -0,0 +1,28 @@
|
||||
# Generated by Django 2.0.2 on 2018-02-05 22:16
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('cookbook', '0003_recipe_path'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='recipe',
|
||||
name='link',
|
||||
field=models.CharField(default='', max_length=512),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='recipe',
|
||||
name='keywords',
|
||||
field=models.ManyToManyField(blank=True, to='cookbook.Keyword'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='recipe',
|
||||
name='path',
|
||||
field=models.CharField(default='', max_length=512),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user