Add Column
Current Schema
CREATE TABLE `competitions` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`name` text NOT NULL,
`short_name` text NOT NULL,
`api_code` text NOT NULL,
`sofascore_tournament_id` integer,
`fbref_comp_id` integer,
`season` integer DEFAULT 2025 NOT NULL,
`created_at` text DEFAULT (datetime('now'))
)