[#32] 지역 정보 추가 #33

Merged
pricelees merged 3 commits from refactor/#32 into main 2025-08-10 05:43:35 +00:00
3 changed files with 3008 additions and 0 deletions
Showing only changes of commit b1a2a7bff1 - Show all commits

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,13 @@
create table if not exists region (
code varchar(10) primary key,
sido_code varchar(2) not null,
sigungu_code varchar(3) not null,
dong_code varchar(5) not null ,
sido_name varchar(20) not null,
sigungu_name varchar(20) not null,
dong_name varchar(20) not null
);
create table if not exists members ( create table if not exists members (
member_id bigint primary key, member_id bigint primary key,
email varchar(255) not null, email varchar(255) not null,

View File

@ -1,3 +1,13 @@
create table if not exists region (
code varchar(10) primary key,
sido_code varchar(2) not null,
sigungu_code varchar(3) not null,
dong_code varchar(5) not null ,
sido_name varchar(20) not null,
sigungu_name varchar(20) not null,
dong_name varchar(20) not null
);
create table if not exists members create table if not exists members
( (
member_id bigint primary key, member_id bigint primary key,