add satisfy configuration to the ui

This commit is contained in:
Kyle Klaus
2020-04-11 00:26:54 -07:00
parent 8d432bd60a
commit 0f238a5021
8 changed files with 55 additions and 10 deletions

View File

@ -26,6 +26,13 @@ exports.up = function (knex/*, Promise*/) {
})
.then(function () {
logger.info('[' + migrate_name + '] access_list_client Table created');
return knex.schema.table('access_list', function (access_list) {
access_list.integer('satify_any').notNull().defaultTo(0);
});
})
.then(() => {
logger.info('[' + migrate_name + '] access_list Table altered');
});
};