Add migration
This commit is contained in:
parent
28730542dc
commit
e71c225177
1 changed files with 17 additions and 0 deletions
17
app/migrations/0042_rename_organization_organisation.py
Normal file
17
app/migrations/0042_rename_organization_organisation.py
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# Generated by Django 3.2.5 on 2021-11-28 14:19
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('app', '0041_auto_20211128_1347'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RenameModel(
|
||||||
|
old_name='Organization',
|
||||||
|
new_name='Organisation',
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue