lamassu-server/packages/server/migrations/1752141860742-compliance-triggers-sets.js
padreug 67f62169d1 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.
2025-10-12 14:24:29 +02:00

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