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

Latest commit

 

History

History
45 lines (30 loc) · 1.45 KB

queries_roles.md

File metadata and controls

45 lines (30 loc) · 1.45 KB

queries_roles

概要

カスタムクエリ⇔ロール

テーブル定義
CREATE TABLE `queries_roles` (
  `query_id` int(11) NOT NULL,
  `role_id` int(11) NOT NULL,
  UNIQUE KEY `queries_roles_ids` (`query_id`,`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci

カラム一覧

名前 タイプ デフォルト値 NULL許可 子テーブル 親テーブル コメント
query_id int(11) false queries
role_id int(11) false roles

制約一覧

名前 タイプ 定義
queries_roles_ids UNIQUE UNIQUE KEY queries_roles_ids (query_id, role_id)

INDEX一覧

名前 定義
queries_roles_ids UNIQUE KEY queries_roles_ids (query_id, role_id) USING BTREE

ER図

er


Generated by tbls