From 43389187849b833ef11d0bd50738adf754cad5de Mon Sep 17 00:00:00 2001 From: Jacob Brewer Date: Thu, 7 Nov 2024 11:02:58 +0000 Subject: [PATCH] remove debug --- pkg/models/schemas/season.sql | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg/models/schemas/season.sql b/pkg/models/schemas/season.sql index 6e75be4..3665676 100644 --- a/pkg/models/schemas/season.sql +++ b/pkg/models/schemas/season.sql @@ -1,8 +1,7 @@ create table season ( - id int not null auto_increment, - year int not null, - template varchar(255) not null, + id int not null auto_increment, + year int not null, primary key (id) );