rename item.json -> item.cache
This commit is contained in:
parent
1bac062a50
commit
bd0732b8d5
7 changed files with 50 additions and 28 deletions
22
pandora/item/migrations/0004_json_cache.py
Normal file
22
pandora/item/migrations/0004_json_cache.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.13 on 2018-06-19 20:24
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import django.core.serializers.json
|
||||
from django.db import migrations, models
|
||||
import oxdjango.fields
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('item', '0003_jsonfield'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='item',
|
||||
old_name='json',
|
||||
new_name='cache',
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue