2021-01-19 15:38:12 +00:00
|
|
|
# Generated by Django 3.0.7 on 2021-01-19 15:34
|
|
|
|
|
|
|
|
import django.core.validators
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2021-03-08 16:49:10 +00:00
|
|
|
("bookwyrm", "0037_auto_20210118_1954"),
|
2021-01-19 15:38:12 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2021-03-08 16:49:10 +00:00
|
|
|
model_name="annualgoal",
|
|
|
|
name="goal",
|
|
|
|
field=models.IntegerField(
|
|
|
|
validators=[django.core.validators.MinValueValidator(1)]
|
|
|
|
),
|
2021-01-19 15:38:12 +00:00
|
|
|
),
|
|
|
|
]
|