chore: add placeholder migration files for previously applied migrations
- Introduced placeholder migration files to satisfy the migration system for various compliance triggers and machine groups. - Each file includes no-op functions for both 'up' and 'down' migrations, indicating that the migrations were already applied to the database.
This commit is contained in:
parent
fc761844b7
commit
67f62169d1
5 changed files with 60 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
// This migration was already applied to the database
|
||||
// This is a placeholder file to satisfy the migration system
|
||||
|
||||
exports.up = function (next) {
|
||||
// Migration already applied - no-op
|
||||
next()
|
||||
}
|
||||
|
||||
exports.down = function (next) {
|
||||
// No-op
|
||||
next()
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
// This migration was already applied to the database
|
||||
// This is a placeholder file to satisfy the migration system
|
||||
|
||||
exports.up = function (next) {
|
||||
// Migration already applied - no-op
|
||||
next()
|
||||
}
|
||||
|
||||
exports.down = function (next) {
|
||||
// No-op
|
||||
next()
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
// This migration was already applied to the database
|
||||
// This is a placeholder file to satisfy the migration system
|
||||
|
||||
exports.up = function (next) {
|
||||
// Migration already applied - no-op
|
||||
next()
|
||||
}
|
||||
|
||||
exports.down = function (next) {
|
||||
// No-op
|
||||
next()
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
// This migration was already applied to the database
|
||||
// This is a placeholder file to satisfy the migration system
|
||||
|
||||
exports.up = function (next) {
|
||||
// Migration already applied - no-op
|
||||
next()
|
||||
}
|
||||
|
||||
exports.down = function (next) {
|
||||
// No-op
|
||||
next()
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
// This migration was already applied to the database
|
||||
// This is a placeholder file to satisfy the migration system
|
||||
|
||||
exports.up = function (next) {
|
||||
// Migration already applied - no-op
|
||||
next()
|
||||
}
|
||||
|
||||
exports.down = function (next) {
|
||||
// No-op
|
||||
next()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue