forked from mirrors/bookwyrm
c7883cd615
To get the app working again I ran resetdb, let it crash in initdb, then ran the migration, then re-ran initdb
18 lines
411 B
Python
18 lines
411 B
Python
# Generated by Django 3.0.3 on 2020-05-13 02:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bookwyrm', '0040_auto_20200513_0153'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='remote_id',
|
|
field=models.CharField(max_length=255, null=True, unique=True),
|
|
),
|
|
]
|