Skip to content

Commit

Permalink
Fix table creation
Browse files Browse the repository at this point in the history
  • Loading branch information
GutoVeronezi committed Jun 4, 2024
1 parent 76d887e commit 6d44719
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,11 @@ CALL `cloud`.`IDEMPOTENT_ADD_COLUMN`('cloud.host_tags', 'is_implicit', 'int(1) U
-- Create command_timeout table and populate it
CREATE TABLE IF NOT EXISTS `cloud`.`command_timeout` (
id bigint(20) unsigned not null auto_increment primary key,
command_classpath text unique key,
command_classpath text not null,
timeout int not null,
created datetime not null,
updated datetime not null
updated datetime not null,
unique key (command_classpath(50))
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `cloud`.`command_timeout` (command_classpath, timeout, created, updated)
Expand Down

0 comments on commit 6d44719

Please sign in to comment.