my-home-dashboard

notify_status_types

Description

通知ステータス種別

Table Definition ```sql CREATE TABLE `notify_status_types` ( `id` tinyint(3) unsigned NOT NULL COMMENT '通知ステータス種別ID', `type_name` varchar(255) NOT NULL COMMENT '通知ステータス種別名', `created_at` datetime NOT NULL DEFAULT current_timestamp() COMMENT '作成日時(UTC)', `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT '更新日時(UTC)', PRIMARY KEY (`id`), UNIQUE KEY `uk_notify_status_types_type_name` (`type_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='通知ステータス種別' ```

Columns

Name Type Default Nullable Extra Definition Children Parents Comment
id tinyint(3) unsigned   false   electricity_notify_statuses   通知ステータス種別ID
type_name varchar(255)   false       通知ステータス種別名
created_at datetime current_timestamp() false       作成日時(UTC)
updated_at datetime current_timestamp() false on update current_timestamp()     更新日時(UTC)

Constraints

Name Type Definition
PRIMARY PRIMARY KEY PRIMARY KEY (id)
uk_notify_status_types_type_name UNIQUE UNIQUE KEY uk_notify_status_types_type_name (type_name)

Indexes

Name Definition
PRIMARY PRIMARY KEY (id) USING BTREE
uk_notify_status_types_type_name UNIQUE KEY uk_notify_status_types_type_name (type_name) USING BTREE

Relations

er


Generated by tbls