Skip to content

Commit

Permalink
Migration that needs to be faked when upgrading
Browse files Browse the repository at this point in the history
  • Loading branch information
abelardopardo committed Aug 20, 2019
1 parent fd02eee commit 43670fd
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions ontask/migrations/0002_auto_20190820_2059.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Generated by Django 2.2.4 on 2019-08-20 11:29

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('ontask', '0001_oauth_initial'),
]

operations = [
migrations.AlterModelTable(
name='action',
table='action_action',
),
migrations.AlterModelTable(
name='actioncolumnconditiontuple',
table='action_actioncolumnconditiontuple',
),
migrations.AlterModelTable(
name='column',
table='workflow_column',
),
migrations.AlterModelTable(
name='condition',
table='action_condition',
),
migrations.AlterModelTable(
name='log',
table='logs_log',
),
migrations.AlterModelTable(
name='oauthusertoken',
table='oauth_oauthusertoken',
),
migrations.AlterModelTable(
name='ontaskuser',
table='core_ontaskuser',
),
migrations.AlterModelTable(
name='plugin',
table='dataops_plugin',
),
migrations.AlterModelTable(
name='profile',
table='profiles_profile',
),
migrations.AlterModelTable(
name='scheduledaction',
table='scheduler_scheduledaction',
),
migrations.AlterModelTable(
name='sqlconnection',
table='dataops_sqlconnection',
),
migrations.AlterModelTable(
name='view',
table='table_view',
),
migrations.AlterModelTable(
name='workflow',
table='workflow_workflow',
),
]

0 comments on commit 43670fd

Please sign in to comment.