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:
padreug 2025-09-12 21:07:38 +02:00
parent fc761844b7
commit 67f62169d1
5 changed files with 60 additions and 0 deletions

View file

@ -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()
}

View file

@ -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()
}

View file

@ -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()
}

View file

@ -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()
}

View file

@ -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()
}