Skip to content

Commit

Permalink
Fix gateway developers migrate (#292)
Browse files Browse the repository at this point in the history
* fix core migrations

* migrations use \

* add 0032_gateway__developers

* revert core migratiosn

* revert core migratiosn

* fix core migrations

* fix core migrations
  • Loading branch information
alex-smile authored Oct 12, 2023
1 parent f241790 commit d9cf7a2
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 51 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Migration(migrations.Migration):

dependencies = [
('core', '0035_proxy_backend'),
('core', '0036_proxy_backend'),
('label', '0003_auto_20230227_2006'),
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Migration(migrations.Migration):

dependencies = [
('core', '0036_auto_20230902_1307'),
('core', '0037_auto_20230902_1307'),
('monitor', '0008_auto_20230227_2006'),
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Migration(migrations.Migration):

dependencies = [
('core', '0036_auto_20230902_1307'),
('core', '0037_auto_20230902_1307'),
('permission', '0009_auto_20210219_2129'),
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Migration(migrations.Migration):

dependencies = [
('core', '0032_auto_20230818_1200'),
('core', '0033_auto_20230818_1200'),
('support', '0015_auto_20230227_2006'),
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Migration(migrations.Migration):

dependencies = [
('core', '0035_proxy_backend'),
('core', '0036_proxy_backend'),
('support', '0016_auto_20230818_1200'),
]

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.18 on 2023-09-25 08:48

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('core', '0031_alter_publishevent_unique_together'),
]

operations = [
migrations.AddField(
model_name='gateway',
name='_developers',
field=models.CharField(blank=True, db_column='developers', default='', max_length=1024, null=True),
),
]
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Migration(migrations.Migration):

dependencies = [
('core', '0031_alter_publishevent_unique_together'),
('core', '0032_gateway__developers'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
class Migration(migrations.Migration):

dependencies = [
('core', '0032_auto_20230818_1200'),
('core', '0033_auto_20230818_1200'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Migration(migrations.Migration):

dependencies = [
('core', '0033_backend_backendconfig'),
('core', '0034_backend_backendconfig'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Migration(migrations.Migration):

dependencies = [
('core', '0034_auto_20230824_1737'),
('core', '0035_auto_20230824_1737'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
class Migration(migrations.Migration):

dependencies = [
('core', '0035_proxy_backend'),
('core', '0036_proxy_backend'),
]

operations = [
Expand Down

This file was deleted.

0 comments on commit d9cf7a2

Please sign in to comment.