mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
d01c9d2dac
This drops usage of finn-eslint rules as they are no longer maintained.
23 lines
474 B
JavaScript
23 lines
474 B
JavaScript
/* eslint camelcase: "off" */
|
|
|
|
'use strict';
|
|
|
|
const crypto = require('crypto');
|
|
|
|
const settingsName = 'unleash.secret';
|
|
|
|
exports.up = function(db, cb) {
|
|
const secret = crypto.randomBytes(20).toString('hex');
|
|
|
|
db.runSql(
|
|
`
|
|
INSERT INTO settings(name, content)
|
|
VALUES('${settingsName}', '${JSON.stringify(secret)}')`,
|
|
cb,
|
|
);
|
|
};
|
|
|
|
exports.down = function(db, cb) {
|
|
db.runSql(`DELETE FROM settings WHERE name = '${settingsName}'`, cb);
|
|
};
|