Skip to content
This repository has been archived by the owner on Feb 18, 2023. It is now read-only.

Latest commit

 

History

History
41 lines (28 loc) · 1.44 KB

changeset_parents.md

File metadata and controls

41 lines (28 loc) · 1.44 KB

changeset_parents

概要

チェンジセット⇔チェンジセット

テーブル定義
CREATE TABLE `changeset_parents` (
  `changeset_id` int(11) NOT NULL,
  `parent_id` int(11) NOT NULL,
  KEY `changeset_parents_changeset_ids` (`changeset_id`),
  KEY `changeset_parents_parent_ids` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci

カラム一覧

名前 タイプ デフォルト値 NULL許可 子テーブル 親テーブル コメント
changeset_id int(11) false changesets
parent_id int(11) false changesets

INDEX一覧

名前 定義
changeset_parents_changeset_ids KEY changeset_parents_changeset_ids (changeset_id) USING BTREE
changeset_parents_parent_ids KEY changeset_parents_parent_ids (parent_id) USING BTREE

ER図

er


Generated by tbls