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