Skip to content

Commit

Permalink
feat : test의 schema.sql 업데이트
Browse files Browse the repository at this point in the history
  • Loading branch information
EunjiShin committed Nov 30, 2023
1 parent 902cae1 commit f1ba918
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions pickly-service/src/test/resources/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,23 @@ END;

create table member
(
id bigserial
id bigserial
constraint member_pk
primary key,
username varchar(80) not null,
password varchar(80) not null,
is_hard_mode boolean not null,
email varchar(100) not null,
name varchar(20),
nickname varchar(200),
profile_emoji text,
fcm_token varchar(200),
timezone varchar(20),
username varchar(80) not null,
password varchar(80) not null,
is_hard_mode boolean not null,
email varchar(100) not null,
name varchar(20),
nickname varchar(200),
profile_emoji text,
fcm_token varchar(200),
timezone varchar(20),
last_login_at timestamp,
created_at timestamp default now() not null,
updated_at timestamp,
deleted_at timestamp
is_inactive boolean,
created_at timestamp default now() not null,
updated_at timestamp,
deleted_at timestamp
);

create unique index member_email_uindex
Expand Down

0 comments on commit f1ba918

Please sign in to comment.