4 lines
153 B
SQL
4 lines
153 B
SQL
ALTER TABLE investigations
|
|
ADD COLUMN IF NOT EXISTS urine_test_result text
|
|
CHECK (urine_test_result IN ('negative','positive','refused','pending'));
|