Skip to content

Commit

Permalink
break a migration rollback on purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Feb 13, 2024
1 parent 6f8f1ac commit 4c89023
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test-db-migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- 'services/api/database/**'

jobs:
docker:
makeup:
runs-on: ubuntu-latest
steps:
-
Expand Down Expand Up @@ -56,6 +56,7 @@ jobs:
name: Reperform initial migration
run: |
docker compose -p lagoon start api-init
sleep 15
-
name: Verify additional migration logs
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ exports.down = async function(knex) {
table.dropColumn('type');
table.dropColumn('updated');
table.dropColumn('created');
table.dropUnique(['name', 'environment'], 'service_environment');
})
.dropTable('environment_service_container')
};

0 comments on commit 4c89023

Please sign in to comment.