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

Latest commit

 

History

History
83 lines (66 loc) · 4.14 KB

time_entries.md

File metadata and controls

83 lines (66 loc) · 4.14 KB

time_entries

概要

時間管理

テーブル定義
CREATE TABLE `time_entries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `project_id` int(11) NOT NULL,
  `author_id` int(11) DEFAULT NULL,
  `user_id` int(11) NOT NULL,
  `issue_id` int(11) DEFAULT NULL,
  `hours` float NOT NULL,
  `comments` varchar(1024) DEFAULT NULL,
  `activity_id` int(11) NOT NULL,
  `spent_on` date NOT NULL,
  `tyear` int(11) NOT NULL,
  `tmonth` int(11) NOT NULL,
  `tweek` int(11) NOT NULL,
  `created_on` datetime NOT NULL,
  `updated_on` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `time_entries_project_id` (`project_id`),
  KEY `time_entries_issue_id` (`issue_id`),
  KEY `index_time_entries_on_activity_id` (`activity_id`),
  KEY `index_time_entries_on_user_id` (`user_id`),
  KEY `index_time_entries_on_created_on` (`created_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci

ラベル

ポリモーフィック関連

カラム一覧

名前 タイプ デフォルト値 NULL許可 Extra Definition 子テーブル 親テーブル コメント
id int(11) false auto_increment
project_id int(11) false projects
author_id int(11) NULL true users
user_id int(11) false users
issue_id int(11) NULL true issues
hours float false
comments varchar(1024) NULL true
activity_id int(11) false
spent_on date false
tyear int(11) false
tmonth int(11) false
tweek int(11) false
created_on datetime false
updated_on datetime false

制約一覧

名前 タイプ 定義
PRIMARY PRIMARY KEY PRIMARY KEY (id)

INDEX一覧

名前 定義
index_time_entries_on_activity_id KEY index_time_entries_on_activity_id (activity_id) USING BTREE
index_time_entries_on_created_on KEY index_time_entries_on_created_on (created_on) USING BTREE
index_time_entries_on_user_id KEY index_time_entries_on_user_id (user_id) USING BTREE
time_entries_issue_id KEY time_entries_issue_id (issue_id) USING BTREE
time_entries_project_id KEY time_entries_project_id (project_id) USING BTREE
PRIMARY PRIMARY KEY (id) USING BTREE

ER図

er


Generated by tbls