You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.3 KiB
Python
74 lines
2.3 KiB
Python
4 years ago
|
# Generated by Django 3.0.3 on 2020-06-26 09:13
|
||
|
|
||
|
import django.core.validators
|
||
|
from django.db import migrations, models
|
||
|
import django_etebase.models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
4 years ago
|
("django_etebase", "0020_remove_collectionitemrevision_salt"),
|
||
4 years ago
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
4 years ago
|
model_name="collectioninvitation",
|
||
|
name="uid",
|
||
|
field=models.CharField(
|
||
|
db_index=True,
|
||
|
max_length=43,
|
||
|
validators=[
|
||
|
django.core.validators.RegexValidator(message="Not a valid UID", regex="^[a-zA-Z0-9\\-_]{20,}$")
|
||
|
],
|
||
|
),
|
||
4 years ago
|
),
|
||
|
migrations.AlterField(
|
||
4 years ago
|
model_name="collectionitem",
|
||
|
name="uid",
|
||
|
field=models.CharField(
|
||
|
db_index=True,
|
||
|
max_length=43,
|
||
|
validators=[
|
||
|
django.core.validators.RegexValidator(message="Not a valid UID", regex="^[a-zA-Z0-9\\-_]{20,}$")
|
||
|
],
|
||
|
),
|
||
4 years ago
|
),
|
||
|
migrations.AlterField(
|
||
4 years ago
|
model_name="collectionitemchunk",
|
||
|
name="uid",
|
||
|
field=models.CharField(
|
||
|
db_index=True,
|
||
|
max_length=60,
|
||
|
validators=[
|
||
|
django.core.validators.RegexValidator(message="Not a valid UID", regex="^[a-zA-Z0-9\\-_]{20,}$")
|
||
|
],
|
||
|
),
|
||
4 years ago
|
),
|
||
|
migrations.AlterField(
|
||
4 years ago
|
model_name="collectionitemrevision",
|
||
|
name="uid",
|
||
|
field=models.CharField(
|
||
|
db_index=True,
|
||
|
max_length=43,
|
||
|
unique=True,
|
||
|
validators=[
|
||
|
django.core.validators.RegexValidator(message="Not a valid UID", regex="^[a-zA-Z0-9\\-_]{20,}$")
|
||
|
],
|
||
|
),
|
||
4 years ago
|
),
|
||
|
migrations.AlterField(
|
||
4 years ago
|
model_name="stoken",
|
||
|
name="uid",
|
||
|
field=models.CharField(
|
||
|
db_index=True,
|
||
|
default=django_etebase.models.generate_stoken_uid,
|
||
|
max_length=43,
|
||
|
unique=True,
|
||
|
validators=[
|
||
|
django.core.validators.RegexValidator(message="Not a valid UID", regex="^[a-zA-Z0-9\\-_]{20,}$")
|
||
|
],
|
||
|
),
|
||
4 years ago
|
),
|
||
|
]
|