Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAP-1839 adding view to simulate flyway DB #736

Merged
merged 5 commits into from
Nov 21, 2024
Merged
3 changes: 3 additions & 0 deletions migrations/20241120000001_form_db.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
exports.up = async knex => {
await knex.raw(`CREATE VIEW flyway_schema_history AS SELECT name as version FROM knex_migrations ORDER BY id;`)
}
Loading