Free text field for the site footer

This commit is contained in:
Mouse Reeve
2021-04-30 10:42:27 -07:00
parent b4c155f134
commit e15d6654e3
5 changed files with 50 additions and 6 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.2 on 2021-04-30 17:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0072_remove_work_default_edition"),
]
operations = [
migrations.AddField(
model_name="sitesettings",
name="footer_item",
field=models.TextField(blank=True, null=True),
),
]