11 lines
322 B
SQL
11 lines
322 B
SQL
create table "members" (
|
|
id varchar(7) primary key,
|
|
first_name text not null,
|
|
full_name text not null,
|
|
registration_token text unique not null,
|
|
diploma text,
|
|
hours text[] not null,
|
|
groups text[] not null
|
|
);
|
|
|