From 2f4ac4e42731c0daa1faef4c50010e0b7621b618 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Sat, 17 Jun 2023 23:33:15 +0200 Subject: [PATCH] Removed default showcasing from entity showcase migration. --- migrations/20221003001803_entity_showcased.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) => {