| 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-26 18:27
from __future__ import unicode_literals
import django.contrib.postgres.fields.jsonb
from django.db import migrations
class Migration(migrations.Migration):
    dependencies = [
        ('archaeological_files', '0010_auto_20171017_1840'),
    ]
    operations = [
        migrations.AlterField(
            model_name='file',
            name='data',
            field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}),
        ),
        migrations.AlterField(
            model_name='historicalfile',
            name='data',
            field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}),
        ),
    ]
 |