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

Latest commit

 

History

History
59 lines (44 loc) · 2.54 KB

imports.md

File metadata and controls

59 lines (44 loc) · 2.54 KB

imports

概要

インポート

テーブル定義
CREATE TABLE `imports` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(255) DEFAULT NULL,
  `user_id` int(11) NOT NULL,
  `filename` varchar(255) DEFAULT NULL,
  `settings` text DEFAULT NULL,
  `total_items` int(11) DEFAULT NULL,
  `finished` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci

カラム一覧

名前 タイプ デフォルト値 NULL許可 Extra Definition 子テーブル 親テーブル コメント
id int(11) false auto_increment import_items
type varchar(255) NULL true
user_id int(11) false users
filename varchar(255) NULL true
settings text NULL true
total_items int(11) NULL true
finished tinyint(1) 0 false
created_at datetime false
updated_at datetime false

制約一覧

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

INDEX一覧

名前 定義
PRIMARY PRIMARY KEY (id) USING BTREE

ER図

er


Generated by tbls