remove bad check

This commit is contained in:
Nick Griffey 2024-02-01 21:39:30 -06:00
parent c01289cae5
commit 35419adff7
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
pragma foreign_keys = 0; pragma foreign_keys = 0;
pragma ignore_check_constraints = 1;
begin; begin;
attach database 'baseball-raw.db' as 'raw'; attach database 'baseball-raw.db' as 'raw';
@ -39,7 +38,7 @@ CREATE TABLE IF NOT EXISTS "appearances" (
"G_lf" NUMERIC, "G_lf" NUMERIC,
"G_cf" NUMERIC, "G_cf" NUMERIC,
"G_rf" NUMERIC, "G_rf" NUMERIC,
"G_of" NUMERIC check (G_of = G_lf + G_cf + G_rf), "G_of" NUMERIC,
"G_dh" NUMERIC, "G_dh" NUMERIC,
"G_ph" NUMERIC, "G_ph" NUMERIC,
"G_pr" NUMERIC, "G_pr" NUMERIC,