fix #1555: add waitlists_joined db column
This commit is contained in:
Родитель
c936ecd110
Коммит
8bee2c7bf3
|
@ -0,0 +1,13 @@
|
|||
"use strict";
|
||||
|
||||
exports.up = function(knex) {
|
||||
return knex.schema.table("subscribers", table => {
|
||||
table.jsonb("waitlists_joined");
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = function(knex) {
|
||||
return knex.schema.table("subscribers", table => {
|
||||
table.dropColumn("waitlists_joined");
|
||||
});
|
||||
};
|
Загрузка…
Ссылка в новой задаче