Skip to content

Commit c9c6a1e

Browse files
fix: script downgrade order
1 parent bf033d2 commit c9c6a1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/postgres-database/src/simcore_postgres_database/migration/versions/c9c165644731_update_project_last_changed_date_column_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def upgrade():
5757

5858

5959
def downgrade():
60-
op.execute(sa.DDL("DROP FUNCTION IF EXISTS update_projects_last_change_date();"))
6160
op.execute(
6261
sa.DDL("DROP TRIGGER IF EXISTS projects_nodes_changed ON projects_nodes;")
6362
)
63+
op.execute(sa.DDL("DROP FUNCTION IF EXISTS update_projects_last_change_date();"))

0 commit comments

Comments
 (0)