mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
ff7be7696c
Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
23 lines
432 B
JavaScript
23 lines
432 B
JavaScript
'use strict';
|
|
|
|
const { v4: uuidv4 } = require('uuid');
|
|
|
|
exports.up = function (db, cb) {
|
|
const instanceId = uuidv4();
|
|
db.runSql(
|
|
`
|
|
INSERT INTO settings(name, content) VALUES ('instanceInfo', json_build_object('id', '${instanceId}'));
|
|
`,
|
|
cb,
|
|
);
|
|
};
|
|
|
|
exports.down = function (db, cb) {
|
|
db.runSql(
|
|
`
|
|
DELETE FROM settings WHERE name = 'instanceInfo'
|
|
`,
|
|
cb,
|
|
);
|
|
};
|