Added migration for visits provider

This commit is contained in:
Nicolai Ort 2021-08-21 09:46:28 +02:00
parent 6195001d4b
commit f48159b31b
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
exports.up = function(knex) {
return knex.schema.table('visits', function (table) {
table.text('provider').defaultTo("N/A");
});
};
exports.down = function(knex) {
};