2021-04-06 17:40:13 +00:00
|
|
|
# Generated by Django 3.1.6 on 2021-04-06 17:31
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2021-04-06 20:54:20 +00:00
|
|
|
("bookwyrm", "0061_auto_20210402_1435"),
|
2021-04-06 17:40:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.RemoveConstraint(
|
2021-04-06 20:54:20 +00:00
|
|
|
model_name="connector",
|
|
|
|
name="connector_file_valid",
|
2021-04-06 17:40:13 +00:00
|
|
|
),
|
|
|
|
migrations.AlterField(
|
2021-04-06 20:54:20 +00:00
|
|
|
model_name="connector",
|
|
|
|
name="connector_file",
|
|
|
|
field=models.CharField(
|
|
|
|
choices=[
|
|
|
|
("openlibrary", "Openlibrary"),
|
|
|
|
("inventaire", "Inventaire"),
|
|
|
|
("self_connector", "Self Connector"),
|
|
|
|
("bookwyrm_connector", "Bookwyrm Connector"),
|
|
|
|
],
|
|
|
|
max_length=255,
|
|
|
|
),
|
2021-04-06 17:40:13 +00:00
|
|
|
),
|
|
|
|
]
|