Added comment field to actors table.
This commit is contained in:
@@ -6,6 +6,7 @@ exports.up = async function(knex) {
|
|||||||
|
|
||||||
await knex.schema.alterTable('actors', (table) => {
|
await knex.schema.alterTable('actors', (table) => {
|
||||||
table.boolean('allow_global_match');
|
table.boolean('allow_global_match');
|
||||||
|
table.text('comment');
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -28,5 +29,6 @@ exports.down = async function(knex) {
|
|||||||
|
|
||||||
await knex.schema.alterTable('actors', (table) => {
|
await knex.schema.alterTable('actors', (table) => {
|
||||||
table.dropColumn('allow_global_match');
|
table.dropColumn('allow_global_match');
|
||||||
|
table.dropColumn('comment');
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user