-- Revert date and timestamps back to separate state. -- There should be no reason to do this, but included for completeness- -- This will re-add the 'date' column, but not set the proper date. ALTER TABLE screenings ADD COLUMN date TYPE DATE NOT NULL, ALTER COLUMN start_time TYPE TIME, ALTER COLUMN end_time TYPE TIME;