[진행중]
This commit is contained in:
14
ddl/schema.sql
Normal file
14
ddl/schema.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
create table member (
|
||||
status varchar(1) not null,
|
||||
created_at timestamp(6) not null,
|
||||
last_login_at timestamp(6),
|
||||
oid bigint generated by default as identity,
|
||||
updated_at timestamp(6) not null,
|
||||
role varchar(40) not null,
|
||||
password varchar(100) not null,
|
||||
user_id varchar(100) not null,
|
||||
refresh_token varchar(200),
|
||||
primary key (oid),
|
||||
constraint uk_member_user_id unique (user_id)
|
||||
);
|
Reference in New Issue
Block a user