Created
June 25, 2021 07:49
-
-
Save zachpendleton/92daae645e7cd798e3c1142cfbc1c282 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE courses ( | |
id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY, | |
name TEXT NOT NULL, | |
start_at TIMESTAMPTZ, | |
visibility TEXT NOT NULL DEFAULT 'VISIBLE', | |
seats INT NOT NULL DEFAULT 0, | |
enrollment_active BOOLEAN NOT NULL DEFAULT TRUE, | |
created_at TIMESTAMPTZ DEFAULT NOW(), | |
updated_at TIMESTAMPTZ | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment