1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/migrations/20211209205201-drop-client-metrics.js

18 lines
320 B
JavaScript
Raw Normal View History

2021-12-09 21:54:32 +01:00
'use strict';
exports.up = function (db, callback) {
db.runSql('DROP TABLE client_metrics;', callback);
};
exports.down = function (db, callback) {
db.runSql(
`
CREATE TABLE client_metrics (
id serial primary key,
created_at timestamp default now(),
metrics json
);`,
callback,
);
};