feat(season): nameLocalized-kolumn för högtidsnamn per marknad (MIKRO B)
CI / Typecheck, test & build (push) Failing after 44s

This commit is contained in:
Sven (AAMOS AI)
2026-08-14 21:56:03 +07:00
parent 19af7e0720
commit 61b9198d51
4 changed files with 10461 additions and 1 deletions
@@ -0,0 +1 @@
ALTER TABLE "season_events" ADD COLUMN "name_localized" text;
File diff suppressed because it is too large Load Diff
+8 -1
View File
@@ -190,6 +190,13 @@
"when": 1786561534897,
"tag": "0026_light_infant_terrible",
"breakpoints": true
},
{
"idx": 27,
"version": "7",
"when": 1786719342931,
"tag": "0027_nostalgic_forgotten_one",
"breakpoints": true
}
]
}
}
+1
View File
@@ -18,6 +18,7 @@ export const seasonEvents = pgTable(
id: text("id").primaryKey(),
slug: text("slug").notNull(),
nameSv: text("name_sv").notNull(),
nameLocalized: text("name_localized"),
market: text("market").notNull().default("SE"),
dateRule: jsonb("date_rule").$type<DateRule>().notNull(),
leadDays: integer("lead_days").notNull().default(7),