1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00

feat: add created_by to api_tokens table (#5596)

Adds a migration for adding created_by column to the api_tokens table.
This commit is contained in:
Christopher Kolstad 2023-12-11 15:41:36 +01:00 committed by GitHub
parent 150e6b03dc
commit 18ea7349c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,7 @@
exports.up = function(db, cb) {
db.runSql(`ALTER TABLE api_tokens ADD COLUMN created_by INTEGER`, cb);
};
exports.down = function(db, cb) {
db.runSql(`ALTER TABLE api_tokens DROP COLUMN created_by`, cb);
};