migration
This commit is contained in:
parent
2bf7deb4ca
commit
93244fdb14
|
@ -0,0 +1,30 @@
|
|||
# Generated by Django 4.2.1 on 2023-08-24 19:16
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("guild", "0011_character_picture"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name="character",
|
||||
options={
|
||||
"ordering": ["name"],
|
||||
"verbose_name": "character",
|
||||
"verbose_name_plural": "characters",
|
||||
},
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="character",
|
||||
name="picture",
|
||||
field=models.ImageField(
|
||||
blank=True,
|
||||
null=True,
|
||||
upload_to="uploads/",
|
||||
verbose_name="Character Picture",
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue