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.
20 lines
348 B
JavaScript
20 lines
348 B
JavaScript
'use strict';
|
|
|
|
exports.up = function(db, callback) {
|
|
db.runSql(
|
|
`
|
|
INSERT INTO strategies(name, description)
|
|
VALUES ('default', 'Default on/off strategy.');
|
|
`,
|
|
callback,
|
|
);
|
|
};
|
|
|
|
exports.down = function(db, callback) {
|
|
db.runSql(
|
|
`
|
|
DELETE FROM strategies where name='default';`,
|
|
callback,
|
|
);
|
|
};
|