Fixed migrations
This commit is contained in:
parent
b05c3e6760
commit
bb4a8c5db1
5 changed files with 69 additions and 0 deletions
16
nummi/account/migrations/0002_alter_account_table.py
Normal file
16
nummi/account/migrations/0002_alter_account_table.py
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# Generated by Django 4.1.4 on 2023-04-22 09:28
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("account", "0001_initial"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelTable(
|
||||||
|
name="account",
|
||||||
|
table=None,
|
||||||
|
),
|
||||||
|
]
|
16
nummi/category/migrations/0002_alter_category_table.py
Normal file
16
nummi/category/migrations/0002_alter_category_table.py
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# Generated by Django 4.1.4 on 2023-04-22 09:28
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("category", "0001_initial"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelTable(
|
||||||
|
name="category",
|
||||||
|
table=None,
|
||||||
|
),
|
||||||
|
]
|
|
@ -25,6 +25,7 @@ class Migration(migrations.Migration):
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
migrations.RenameField("Transaction", "snapshot", "statement"),
|
||||||
migrations.SeparateDatabaseAndState(
|
migrations.SeparateDatabaseAndState(
|
||||||
database_operations=database_operations,
|
database_operations=database_operations,
|
||||||
state_operations=state_operations,
|
state_operations=state_operations,
|
||||||
|
|
16
nummi/statement/migrations/0002_alter_statement_table.py
Normal file
16
nummi/statement/migrations/0002_alter_statement_table.py
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# Generated by Django 4.1.4 on 2023-04-22 09:28
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("statement", "0001_initial"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelTable(
|
||||||
|
name="statement",
|
||||||
|
table=None,
|
||||||
|
),
|
||||||
|
]
|
|
@ -0,0 +1,20 @@
|
||||||
|
# Generated by Django 4.1.4 on 2023-04-22 09:28
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("transaction", "0001_initial"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelTable(
|
||||||
|
name="invoice",
|
||||||
|
table=None,
|
||||||
|
),
|
||||||
|
migrations.AlterModelTable(
|
||||||
|
name="transaction",
|
||||||
|
table=None,
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue