Add migrations to sync model options.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('document_indexing', '0003_auto_20150708_0101'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='index',
|
||||
name='label',
|
||||
field=models.CharField(unique=True, max_length=128, verbose_name='Label'),
|
||||
preserve_default=True,
|
||||
),
|
||||
]
|
||||
20
mayan/apps/documents/migrations/0015_auto_20150708_0113.py
Normal file
20
mayan/apps/documents/migrations/0015_auto_20150708_0113.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('documents', '0014_auto_20150708_0107'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='documenttype',
|
||||
name='label',
|
||||
field=models.CharField(unique=True, max_length=32, verbose_name='Label'),
|
||||
preserve_default=True,
|
||||
),
|
||||
]
|
||||
23
mayan/apps/linking/migrations/0002_resolvedsmartlink.py
Normal file
23
mayan/apps/linking/migrations/0002_resolvedsmartlink.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('linking', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ResolvedSmartLink',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('linking.smartlink',),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user