Skip to content

Commit

Permalink
Merge pull request #1173 from kylewm/semicolons-in-schema
Browse files Browse the repository at this point in the history
add missing semicolons in mysql schema
  • Loading branch information
benwerd committed Feb 1, 2016
2 parents b06d747 + d079b87 commit d7c216f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions schemas/mysql/2016013101.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ALTER TABLE `entities` CHANGE `search` `search` LONGTEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL
ALTER TABLE `reader` CHANGE `search` `search` LONGTEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL
ALTER TABLE `reader` CHANGE `contents` `contents` LONGBLOB NOT NULL
UPDATE `versions` SET `value` = '2014100801' WHERE `label` = 'schema';
ALTER TABLE `entities` CHANGE `search` `search` LONGTEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
ALTER TABLE `reader` CHANGE `search` `search` LONGTEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
ALTER TABLE `reader` CHANGE `contents` `contents` LONGBLOB NOT NULL;
UPDATE `versions` SET `value` = '2014100801' WHERE `label` = 'schema';

0 comments on commit d7c216f

Please sign in to comment.