- 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.
12 lines
No EOL
253 B
JavaScript
12 lines
No EOL
253 B
JavaScript
// 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()
|
|
} |