parent
0ac41e77e8
commit
e4361d2364
@ -13,6 +13,6 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name="collectiontype",
|
model_name="collectiontype",
|
||||||
name="uid",
|
name="uid",
|
||||||
field=models.BinaryField(db_index=True, editable=True, unique=True),
|
field=models.BinaryField(db_index=True, editable=True, max_length=1024, unique=True),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
@ -6,13 +6,13 @@ from django.db import migrations, models
|
|||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('django_etebase', '0036_auto_20201214_1128'),
|
("django_etebase", "0036_auto_20201214_1128"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='collectiontype',
|
model_name="collectiontype",
|
||||||
name='uid',
|
name="uid",
|
||||||
field=models.BinaryField(db_index=True, editable=True, max_length=1024, unique=True),
|
field=models.BinaryField(db_index=True, editable=True, max_length=1024, unique=True),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user