[#34] 회원 / 인증 도메인 재정의 #43

Merged
pricelees merged 73 commits from refactor/#34 into main 2025-09-13 10:13:45 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit c832410160 - Show all commits

View File

@ -24,7 +24,7 @@ create table if not exists users(
email varchar(255) not null, email varchar(255) not null,
password varchar(255) not null, password varchar(255) not null,
phone varchar(20) not null, phone varchar(20) not null,
region_code varchar(10) not null, region_code varchar(10) null,
status varchar(20) not null, status varchar(20) not null,
created_at timestamp not null, created_at timestamp not null,
created_by bigint not null, created_by bigint not null,

View File

@ -72,7 +72,7 @@ object UserFixture {
email: String = "sample@example.com", email: String = "sample@example.com",
password: String = "a".repeat(MIN_PASSWORD_LENGTH), password: String = "a".repeat(MIN_PASSWORD_LENGTH),
phone: String = "01012345678", phone: String = "01012345678",
regionCode: String = "1130510300", regionCode: String? = null,
status: UserStatus = UserStatus.ACTIVE status: UserStatus = UserStatus.ACTIVE
): UserEntity = UserEntity( ): UserEntity = UserEntity(
id = id, id = id,
@ -89,7 +89,7 @@ object UserFixture {
email = "sample@example.com", email = "sample@example.com",
password = "a".repeat(MIN_PASSWORD_LENGTH), password = "a".repeat(MIN_PASSWORD_LENGTH),
phone = "01012345678", phone = "01012345678",
regionCode = "1130510300" regionCode = null
) )
} }