Added migration for clientside redirects

ref #3
This commit is contained in:
Nicolai Ort 2021-09-25 18:25:53 +02:00
parent 3803ac9197
commit e3214084f6
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
exports.up = function(knex) {
return knex.schema.table('urls', function (table) {
table.boolean('clientside').defaultTo(false);
});
};
exports.down = function(knex) {
};