Added migration for visits provider
This commit is contained in:
parent
6195001d4b
commit
f48159b31b
10
migrations/20210821094219_visits_providers.js
Normal file
10
migrations/20210821094219_visits_providers.js
Normal 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) {
|
||||
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user