diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-04-20 16:28:21 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-04-20 16:28:21 +0200 |
commit | 0ff92ef98dbfbfc0e2d89dff18f7bb2dc3950b8c (patch) | |
tree | dea08fc84ca5ef9d4bcbaae8e2629e73573eab6d /ishtar_common/migrations | |
parent | a589b3ef96c9adf4e408713201ffe7d269e4f78f (diff) | |
download | Ishtar-0ff92ef98dbfbfc0e2d89dff18f7bb2dc3950b8c.tar.bz2 Ishtar-0ff92ef98dbfbfc0e2d89dff18f7bb2dc3950b8c.zip |
precise_town refactoring for django app consistency
Diffstat (limited to 'ishtar_common/migrations')
-rw-r--r-- | ishtar_common/migrations/0228_auto_20230418_1622.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0228_auto_20230418_1622.py b/ishtar_common/migrations/0228_auto_20230418_1622.py index 65154f308..a3ff7e472 100644 --- a/ishtar_common/migrations/0228_auto_20230418_1622.py +++ b/ishtar_common/migrations/0228_auto_20230418_1622.py @@ -50,4 +50,24 @@ class Migration(migrations.Migration): name='container_ref_id', field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Container reference ID'), ), + migrations.AlterField( + model_name='historicalorganization', + name='precise_town_id', + field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Town (precise)'), + ), + migrations.AlterField( + model_name='historicalperson', + name='precise_town_id', + field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Town (precise)'), + ), + migrations.AlterField( + model_name='organization', + name='precise_town_id', + field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Town (precise)'), + ), + migrations.AlterField( + model_name='person', + name='precise_town_id', + field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Town (precise)'), + ), ] |