wrbapp-next/server/migrations/001_create_members.sql

11 lines
322 B
MySQL
Raw Normal View History

2025-01-31 13:36:09 +01:00
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
);