Skip to content

Commit

Permalink
Fix schema name and ver num
Browse files Browse the repository at this point in the history
  • Loading branch information
dyakovri committed May 7, 2024
1 parent 096429b commit c0e5e19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ def upgrade():
['ALL'],
'"STG_INFRA".container_processes',
)
op.alter_column('container_log', 'container_name', new_column_name='logfile')
op.alter_column('container_log', 'container_name', new_column_name='logfile', schema='STG_INFRA')


def downgrade():
op.drop_table('container_processes', schema='STG_INFRA')
op.alter_column('container_log', 'logfile', new_column_name='container_name')
op.alter_column('container_log', 'logfile', new_column_name='container_name', schema='STG_INFRA')
2 changes: 1 addition & 1 deletion profcomff_definitions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys


__version__ = '2024.05.07'
__version__ = '2024.05.07.1'


dir_path = os.path.dirname(os.path.abspath(__file__))
Expand Down

0 comments on commit c0e5e19

Please sign in to comment.