fix #1555: add waitlists_joined db column

This commit is contained in:
Luke Crouch 2020-02-20 14:53:29 -06:00
Родитель c936ecd110
Коммит 8bee2c7bf3
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -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");
});
};