Skip to content

Commit

Permalink
release: 0.0.7
Browse files Browse the repository at this point in the history
release: 0.0.7
  • Loading branch information
devxb authored Jan 14, 2024
2 parents 908c549 + 0c0add6 commit 8c97dce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/db/migration/V4__update_users.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ alter table users
alter table users
add column oauth_id varchar(255) not null unique;
alter table users
add column role_type varchar(255);
add column role_type enum ('ROLE_USER','ROLE_ADMIN');
2 changes: 1 addition & 1 deletion src/test/resources/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ create table if not exists users
goal varchar(50),
oauth_id varchar(255) not null unique,
authenticated enum ('카카오','네이버') not null,
role_type varchar(255),
role_type enum ('ROLE_USER','ROLE_ADMIN'),
city varchar(255),
detail_job_class varchar(255),
job_class varchar(255),
Expand Down

0 comments on commit 8c97dce

Please sign in to comment.