diff --git a/migrations/20221003001803_entity_showcased.js b/migrations/20221003001803_entity_showcased.js index 40a58916..c817da6a 100755 --- a/migrations/20221003001803_entity_showcased.js +++ b/migrations/20221003001803_entity_showcased.js @@ -1,6 +1,5 @@ exports.up = async (knex) => knex.schema.alterTable('entities', (table) => { - table.boolean('showcased') - .defaultTo(true); + table.boolean('showcased'); }); exports.down = async (knex) => knex.schema.alterTable('entities', (table) => {