11 lines
339 B
SQL
11 lines
339 B
SQL
CREATE TABLE "members" (
|
|
member_id varchar(7) NOT NULL PRIMARY KEY,
|
|
first_name text NOT NULL,
|
|
full_name text NOT NULL,
|
|
registration_token text NOT NULL UNIQUE,
|
|
diploma text,
|
|
groups bigint NOT NULL,
|
|
roles bigint NOT NULL
|
|
);
|
|
|