From 3622ac22b9adf031849125fcc83b4f464ddb2aab Mon Sep 17 00:00:00 2001 From: littlewolf Date: Mon, 28 Oct 2019 10:13:43 +0300 Subject: [PATCH] Add migrations --- .../location/migrations/0013_country_old_id.py | 18 ++++++++++++++++++ .../migrations/0014_remove_country_old_id.py | 17 +++++++++++++++++ .../location/migrations/0015_country_old_id.py | 18 ++++++++++++++++++ apps/location/migrations/0016_region_old_id.py | 18 ++++++++++++++++++ apps/location/migrations/0017_city_old_id.py | 18 ++++++++++++++++++ .../location/migrations/0018_address_old_id.py | 18 ++++++++++++++++++ 6 files changed, 107 insertions(+) create mode 100644 apps/location/migrations/0013_country_old_id.py create mode 100644 apps/location/migrations/0014_remove_country_old_id.py create mode 100644 apps/location/migrations/0015_country_old_id.py create mode 100644 apps/location/migrations/0016_region_old_id.py create mode 100644 apps/location/migrations/0017_city_old_id.py create mode 100644 apps/location/migrations/0018_address_old_id.py diff --git a/apps/location/migrations/0013_country_old_id.py b/apps/location/migrations/0013_country_old_id.py new file mode 100644 index 00000000..7a6a3029 --- /dev/null +++ b/apps/location/migrations/0013_country_old_id.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.4 on 2019-10-27 06:02 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('location', '0012_data_migrate'), + ] + + operations = [ + migrations.AddField( + model_name='country', + name='old_id', + field=models.IntegerField(blank=True, default=None, null=True), + ), + ] diff --git a/apps/location/migrations/0014_remove_country_old_id.py b/apps/location/migrations/0014_remove_country_old_id.py new file mode 100644 index 00000000..6b04c9b4 --- /dev/null +++ b/apps/location/migrations/0014_remove_country_old_id.py @@ -0,0 +1,17 @@ +# Generated by Django 2.2.4 on 2019-10-27 06:04 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('location', '0013_country_old_id'), + ] + + operations = [ + migrations.RemoveField( + model_name='country', + name='old_id', + ), + ] diff --git a/apps/location/migrations/0015_country_old_id.py b/apps/location/migrations/0015_country_old_id.py new file mode 100644 index 00000000..56e9b251 --- /dev/null +++ b/apps/location/migrations/0015_country_old_id.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.4 on 2019-10-27 06:04 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('location', '0014_remove_country_old_id'), + ] + + operations = [ + migrations.AddField( + model_name='country', + name='old_id', + field=models.IntegerField(blank=True, default=None, null=True), + ), + ] diff --git a/apps/location/migrations/0016_region_old_id.py b/apps/location/migrations/0016_region_old_id.py new file mode 100644 index 00000000..c4bd0d34 --- /dev/null +++ b/apps/location/migrations/0016_region_old_id.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.4 on 2019-10-27 10:02 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('location', '0015_country_old_id'), + ] + + operations = [ + migrations.AddField( + model_name='region', + name='old_id', + field=models.IntegerField(blank=True, default=None, null=True), + ), + ] diff --git a/apps/location/migrations/0017_city_old_id.py b/apps/location/migrations/0017_city_old_id.py new file mode 100644 index 00000000..b38a30bd --- /dev/null +++ b/apps/location/migrations/0017_city_old_id.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.4 on 2019-10-28 04:11 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('location', '0016_region_old_id'), + ] + + operations = [ + migrations.AddField( + model_name='city', + name='old_id', + field=models.IntegerField(blank=True, default=None, null=True), + ), + ] diff --git a/apps/location/migrations/0018_address_old_id.py b/apps/location/migrations/0018_address_old_id.py new file mode 100644 index 00000000..549375f4 --- /dev/null +++ b/apps/location/migrations/0018_address_old_id.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.4 on 2019-10-28 05:48 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('location', '0017_city_old_id'), + ] + + operations = [ + migrations.AddField( + model_name='address', + name='old_id', + field=models.IntegerField(blank=True, default=None, null=True), + ), + ]