Skip to content

Commit

Permalink
Remove trailing commas from create_table statements (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
daemonsy authored Jun 4, 2021
1 parent 452caad commit 39b1b36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/mysql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ CREATE TABLE commands (

CHECK (command_uuid != ''),
CHECK (request_type != ''),
CHECK (SUBSTRING(command FROM 1 FOR 5) = '<?xml'),
CHECK (SUBSTRING(command FROM 1 FOR 5) = '<?xml')
);


Expand Down Expand Up @@ -166,7 +166,7 @@ CREATE TABLE command_results (
-- capture results in the case they're malformed.
CHECK (status != ''),
INDEX (status),
CHECK (SUBSTRING(result FROM 1 FOR 5) = '<?xml'),
CHECK (SUBSTRING(result FROM 1 FOR 5) = '<?xml')
);


Expand Down

0 comments on commit 39b1b36

Please sign in to comment.