kmbin92_2025081101 #1

Merged
sohot8653 merged 9 commits from kmbin92_2025081101 into main 2025-08-13 10:42:57 +09:00
75 changed files with 28768 additions and 72 deletions
Showing only changes of commit a8e1a15b1d - Show all commits

View File

@@ -11,6 +11,8 @@
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)
primary key (oid)
);
create index idx_member_user_id
on st_member (user_id);

View File

@@ -18,8 +18,8 @@ import java.time.LocalDateTime;
@Builder
@Table(
name = "st_member",
uniqueConstraints = {
@UniqueConstraint(name = "uk_member_user_id", columnNames = "user_id")
indexes = {
@Index(name = "idx_member_user_id", columnList = "user_id")
}
)
public class Member extends BaseEntity {