1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-23 01:16:27 +02:00

feat: client instances sdk type (#9844)

This commit is contained in:
Mateusz Kwasniewski 2025-04-25 12:20:48 +02:00 committed by GitHub
parent 776594a1b0
commit 085c62c99a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,15 @@
'use strict';
exports.up = function (db, callback) {
db.runSql(
`ALTER TABLE client_instances ADD COLUMN sdk_type varchar(255);`,
callback
);
};
exports.down = function (db, callback) {
db.runSql(
`ALTER TABLE client_instances DROP COLUMN sdk_type;`,
callback
);
};