カスタムフィールド⇔ロール
テーブル定義
CREATE TABLE `custom_fields_roles` (
`custom_field_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
UNIQUE KEY `custom_fields_roles_ids` (`custom_field_id`,`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci
名前 | タイプ | デフォルト値 | NULL許可 | 子テーブル | 親テーブル | コメント |
---|---|---|---|---|---|---|
custom_field_id | int(11) | false | custom_fields | |||
role_id | int(11) | false | roles |
名前 | タイプ | 定義 |
---|---|---|
custom_fields_roles_ids | UNIQUE | UNIQUE KEY custom_fields_roles_ids (custom_field_id, role_id) |
名前 | 定義 |
---|---|
custom_fields_roles_ids | UNIQUE KEY custom_fields_roles_ids (custom_field_id, role_id) USING BTREE |
Generated by tbls