forked from DebaucheryLibrarian/traxxx
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
|
exports.up = async (knex) => knex.schema.alterTable('entities', (table) => {
|
||
|
table.boolean('showcased')
|
||
|
.defaultTo(true);
|
||
|
});
|
||
|
|
||
|
exports.down = async (knex) => knex.schema.alterTable('entities', (table) => {
|
||
|
table.dropColumn('showcased');
|
||
|
});
|