11 lines
322 B
MySQL
11 lines
322 B
MySQL
|
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
|
||
|
);
|
||
|
|