feat: region 스키마 및 초기 데이터 sql 추가

This commit is contained in:
이상진 2025-08-10 14:39:08 +09:00
parent 5fe1427fc1
commit b1a2a7bff1
3 changed files with 3008 additions and 0 deletions

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 (
member_id bigint primary key,
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
(
member_id bigint primary key,