I have a table defined by the following SQL:
CREATE TABLE test ( id integer PRIMARY KEY NOT NULL UNIQUE, status text NOT NULL, enddate date,
CREATE TABLE test ( id integer PRIMARY KEY, status text NOT NULL CHECK (status IN ('Current', 'Complete')), enddate date NOT NULL );
This will work in SQLite, with the CHECK constraint written inline. I changed double quotes to apostrophes so it can be used in PHP.
CHECK