1
0
Fork 0

Here we go again!

This commit is contained in:
Jascha Ezra Urbach 2023-01-15 09:41:39 +01:00
parent 10322cdff3
commit 54e0fdd5ae
No known key found for this signature in database
GPG key ID: A43A844B114F9B08
6 changed files with 41 additions and 1 deletions

View file

@ -0,0 +1,21 @@
# Generated by Django 3.2.16 on 2023-01-15 08:38
import bookwyrm.models.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0172_alter_user_preferred_language"),
]
operations = [
migrations.AddField(
model_name="author",
name="website",
field=bookwyrm.models.fields.CharField(
blank=True, max_length=255, null=True
),
),
]