blob: d2e6dde4c4b346f1ea7044d327ca1b1fc7bd85dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2017-10-17 17:30
from __future__ import unicode_literals
import django.contrib.postgres.fields.jsonb
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('archaeological_files', '0009_auto_20171012_1316'),
]
operations = [
migrations.AddField(
model_name='file',
name='data',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True),
),
migrations.AddField(
model_name='historicalfile',
name='data',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True),
),
]
|