Added migration for clientside redirects

ref #3
This commit is contained in:
2021-09-25 18:25:53 +02:00
parent 3803ac9197
commit e3214084f6

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) {
};