템플릿 용어집
Table Definition
CREATE TABLE `template_vocabulary` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`type` varchar(20) NOT NULL COMMENT '템플릿 용어집 타입',
PRIMARY KEY (`id`),
UNIQUE KEY `uk_template_vocabulary_type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=[Redacted by tbls] DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='템플릿 용어집'| Name | Type | Default | Nullable | Extra Definition | Children | Parents | Comment |
|---|---|---|---|---|---|---|---|
| id | bigint(20) | false | auto_increment | template_term | ID | ||
| type | varchar(20) | false | 템플릿 용어집 타입 |
| Name | Type | Definition |
|---|---|---|
| PRIMARY | PRIMARY KEY | PRIMARY KEY (id) |
| uk_template_vocabulary_type | UNIQUE | UNIQUE KEY uk_template_vocabulary_type (type) |
| Name | Definition |
|---|---|
| PRIMARY | PRIMARY KEY (id) USING BTREE |
| uk_template_vocabulary_type | UNIQUE KEY uk_template_vocabulary_type (type) USING BTREE |
erDiagram
"template_term" }o--|| "template_vocabulary" : "FOREIGN KEY (template_vocabulary_id) REFERENCES template_vocabulary (id)"
"template_vocabulary" {
bigint_20_ id PK
varchar_20_ type
}
"template_term" {
bigint_20_ id PK
varchar_100_ term
varchar_2000_ meaning
varchar_255_ synonym
bigint_20_ template_vocabulary_id FK
}
Generated by tbls