Removed default showcasing from entity showcase migration.

This commit is contained in:
DebaucheryLibrarian 2023-06-17 23:33:15 +02:00
parent 0056780dc4
commit 2f4ac4e427
1 changed files with 1 additions and 2 deletions

View File

@ -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) => {