mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-01 11:52:20 +00:00
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
389 B
Python
18 lines
389 B
Python
# Generated by Django 3.0.3 on 2020-02-21 17:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bookwyrm', '0005_auto_20200221_1645'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='tag',
|
|
name='identifier',
|
|
field=models.CharField(max_length=100),
|
|
),
|
|
]
|