Skip to content

Commit

Permalink
table job column build_number to type bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
cxwccc committed May 30, 2018
1 parent 8f67e39 commit bfdb608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema/flow_api_db.sql
Expand Up @@ -46,7 +46,7 @@ CREATE TABLE `flow` (
CREATE TABLE `job` (
`id` decimal(25,0) NOT NULL,
`node_path` varchar(255) NOT NULL,
`build_number` int(11) NOT NULL,
`build_number` bigint NOT NULL,
`node_name` varchar(50) NOT NULL,
`log_path` varchar(255) DEFAULT NULL,
`job_status` varchar(20) NOT NULL,
Expand Down Expand Up @@ -220,4 +220,4 @@ CREATE TABLE `artifact` (
`name` varchar(255) DEFAULT NULL,
`url` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

0 comments on commit bfdb608

Please sign in to comment.