18 lines
345 B
Python
18 lines
345 B
Python
|
# Generated by Django 3.1.5 on 2021-01-20 00:39
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("quotedb", "0001_initial"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name="person",
|
||
|
options={"verbose_name_plural": "people"},
|
||
|
),
|
||
|
]
|