From 1416cd46a379e421a1bbc3e2fc487907ff4bde48 Mon Sep 17 00:00:00 2001 From: Hachi-R Date: Sat, 9 Nov 2024 16:03:43 -0300 Subject: [PATCH] feat: seed downloads from previous versions --- src/main/migrations/20241108200154_add_should_seed_colum.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/migrations/20241108200154_add_should_seed_colum.ts b/src/main/migrations/20241108200154_add_should_seed_colum.ts index 60be0730..7e90a3b1 100644 --- a/src/main/migrations/20241108200154_add_should_seed_colum.ts +++ b/src/main/migrations/20241108200154_add_should_seed_colum.ts @@ -5,7 +5,7 @@ export const AddShouldSeedColumn: HydraMigration = { name: "AddShouldSeedColumn", up: (knex: Knex) => { return knex.schema.alterTable("game", (table) => { - return table.boolean("shouldSeed").notNullable().defaultTo(false); + return table.boolean("shouldSeed").notNullable().defaultTo(true); }); },