mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
parent
fbb0445942
commit
b67f9a6487
@ -1,3 +1,17 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
module.exports = require('../scripts/migration-runner').create('010-create-client-instances');
|
exports.up = function (db, callback) {
|
||||||
|
db.runSql(`
|
||||||
|
CREATE TABLE client_instances (
|
||||||
|
app_name varchar(255),
|
||||||
|
instance_id varchar(255),
|
||||||
|
client_ip varchar(255),
|
||||||
|
last_seen timestamp default now(),
|
||||||
|
created_at timestamp default now()
|
||||||
|
);`, callback);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
exports.down = function (db, callback) {
|
||||||
|
db.runSql('DROP TABLE client_instances;', callback);
|
||||||
|
};
|
||||||
|
@ -1 +0,0 @@
|
|||||||
DROP TABLE client_instances;
|
|
@ -1,7 +0,0 @@
|
|||||||
CREATE TABLE client_instances (
|
|
||||||
app_name varchar(255),
|
|
||||||
instance_id varchar(255),
|
|
||||||
client_ip varchar(255),
|
|
||||||
last_seen timestamp default now(),
|
|
||||||
created_at timestamp default now()
|
|
||||||
);
|
|
Loading…
Reference in New Issue
Block a user