Skip to content

지역테이블 리모델링(필수)‼️ #71

@shmin7777

Description

@shmin7777
DROP TABLE IF EXISTS region;
CREATE TABLE region
(
    region_seq   BIGINT AUTO_INCREMENT,
    continent    VARCHAR(255) NOT NULL COMMENT '대륙',
    country      VARCHAR(255) NOT NULL COMMENT '나라',
    region       VARCHAR(255) NOT NULL COMMENT '지역',
    created_ymdt DATETIME(6)  NOT NULL COMMENT '등록일시',
    PRIMARY KEY(region_seq),
    KEY idx_continent_country(continent, country)
) COMMENT '지역';

토피케이션 지역데이터.json

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions