forked from mirrors/bookwyrm
19 lines
525 B
Python
19 lines
525 B
Python
|
# Generated by Django 3.0.7 on 2020-09-28 23:12
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('bookwyrm', '0046_auto_20200921_1509'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='connector',
|
||
|
name='connector_file',
|
||
|
field=models.CharField(choices=[('openlibrary', 'Openlibrary'), ('self_connector', 'Self Connector'), ('bookwyrm_connector', 'Bookwyrm Connector')], max_length=255),
|
||
|
),
|
||
|
]
|