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
23 lines
647 B
Python
23 lines
647 B
Python
# Generated by Django 3.0.3 on 2020-04-01 18:24
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bookwyrm', '0027_auto_20200330_2232'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='comment',
|
|
name='name',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='review',
|
|
name='rating',
|
|
field=models.IntegerField(blank=True, default=None, null=True, validators=[django.core.validators.MinValueValidator(1), django.core.validators.MaxValueValidator(5)]),
|
|
),
|
|
]
|