7 lines
No EOL
239 B
SQL
7 lines
No EOL
239 B
SQL
-- temp table to allow folks to verify by committee email.
|
|
CREATE TABLE IF NOT EXISTS committee (
|
|
discord integer PRIMARY KEY,
|
|
email text not null,
|
|
auth_code text not null,
|
|
committee integer DEFAULT 0
|
|
); |