Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 2.23 KB

sk_salesforce_jobs.md

File metadata and controls

61 lines (46 loc) · 2.23 KB

sk_salesforce_jobs

Description

セールスフォース送信用ジョブデータ

Table Definition
CREATE TABLE `sk_salesforce_jobs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `func_id` int(11) NOT NULL COMMENT 'ジョブの識別子 1:予約 2:支払 3:オプション',
  `process_type` int(11) DEFAULT NULL COMMENT '処理種別 1:新規 2:更新',
  `reserve_id` int(11) NOT NULL COMMENT '予約ID',
  `reserve_fitting_id` int(11) DEFAULT NULL COMMENT '予約-備品ID',
  `payment_id` int(11) DEFAULT NULL COMMENT '支払ID',
  `manual_payment_id` int(11) DEFAULT NULL COMMENT '手動請求ID',
  `created` tinyint(1) DEFAULT NULL COMMENT '新規作成フラグ 新規:1 更新:0',
  `arg` varchar(1000) NOT NULL DEFAULT '' COMMENT '引数',
  `run_after` datetime DEFAULT NULL COMMENT '実行時間、NULLは実行しない',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=[Redacted by tbls] DEFAULT CHARSET=utf8 COMMENT='セールスフォース送信用ジョブデータ'

Columns

Name Type Default Nullable Extra Definition Children Parents Comment
id int(11) false auto_increment
func_id int(11) false ジョブの識別子 1:予約 2:支払 3:オプション
process_type int(11) true 処理種別 1:新規 2:更新
reserve_id int(11) false 予約ID
reserve_fitting_id int(11) true 予約-備品ID
payment_id int(11) true 支払ID
manual_payment_id int(11) true 手動請求ID
created tinyint(1) true 新規作成フラグ 新規:1 更新:0
arg varchar(1000) false 引数
run_after datetime true 実行時間、NULLは実行しない

Constraints

Name Type Definition
PRIMARY PRIMARY KEY PRIMARY KEY (id)

Indexes

Name Definition
PRIMARY PRIMARY KEY (id) USING BTREE

Relations

er


Generated by tbls