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
27
28
29
30
31
32
33
34
35
36
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-09-03 14:27
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('contenttypes', '0003_auto_20190903_1427'),
('ishtar_common', '0099_ishtarsiteprofile_relation_graph'),
]
operations = [
migrations.AlterUniqueTogether(
name='customform',
unique_together=set([('name', 'form')]),
),
migrations.AlterUniqueTogether(
name='customformjsonfield',
unique_together=set([('custom_form', 'json_field')]),
),
migrations.AlterUniqueTogether(
name='excludedfield',
unique_together=set([('custom_form', 'field')]),
),
migrations.AlterUniqueTogether(
name='jsondatafield',
unique_together=set([('content_type', 'key')]),
),
migrations.AlterUniqueTogether(
name='jsondatasection',
unique_together=set([('name', 'content_type')]),
),
]
|