feat: Migrations
This commit is contained in:
parent
2d86292d66
commit
a6e2bbc3e5
@ -0,0 +1,17 @@
|
|||||||
|
# Generated by Django 5.0.3 on 2024-04-14 11:29
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("fellchensammlung", "0001_initial"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RenameModel(
|
||||||
|
old_name="MarkdownContent",
|
||||||
|
new_name="Text",
|
||||||
|
),
|
||||||
|
]
|
17
src/fellchensammlung/migrations/0003_alter_text_options.py
Normal file
17
src/fellchensammlung/migrations/0003_alter_text_options.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Generated by Django 5.0.3 on 2024-04-14 11:30
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("fellchensammlung", "0002_rename_markdowncontent_text"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="text",
|
||||||
|
options={"verbose_name_plural": "Text"},
|
||||||
|
),
|
||||||
|
]
|
17
src/fellchensammlung/migrations/0004_alter_text_options.py
Normal file
17
src/fellchensammlung/migrations/0004_alter_text_options.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Generated by Django 5.0.3 on 2024-04-14 11:30
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("fellchensammlung", "0003_alter_text_options"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="text",
|
||||||
|
options={"verbose_name": "Text", "verbose_name_plural": "Texte"},
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user