feat: seed downloads from previous versions

This commit is contained in:
Hachi-R 2024-11-09 16:03:43 -03:00
parent 610b6e528c
commit 1416cd46a3

View File

@ -5,7 +5,7 @@ export const AddShouldSeedColumn: HydraMigration = {
name: "AddShouldSeedColumn", name: "AddShouldSeedColumn",
up: (knex: Knex) => { up: (knex: Knex) => {
return knex.schema.alterTable("game", (table) => { return knex.schema.alterTable("game", (table) => {
return table.boolean("shouldSeed").notNullable().defaultTo(false); return table.boolean("shouldSeed").notNullable().defaultTo(true);
}); });
}, },