UNPKG

306 BJavaScriptView Raw
1exports.up = async function(knex, Promise) {
2 await knex.schema.alterTable("content_references", table => {
3 table.string('fieldNames')
4 });
5};
6
7exports.down = async function(knex, Promise) {
8 await knex.schema.alterTable("content_references", table => {
9 table.dropColumn("fieldNames");
10 });
11};