Skip to content

Commit

Permalink
Dev: Hack test SQL
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Jan 9, 2018
1 parent 27471e4 commit b9a0e8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/data/sql/create-mysql.258.sql
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ CREATE TABLE `prefix_permissions` (
CREATE TABLE `prefix_plugins` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(50) NOT NULL,
`active` tinyint(1) NOT NULL default '0',
`active` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MYISAM CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;

Expand Down
2 changes: 1 addition & 1 deletion tests/data/sql/create-mysql.315.sql
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ CREATE TABLE `prefix_permissions` (
CREATE TABLE `prefix_plugins` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(50) NOT NULL,
`active` tinyint(1) NOT NULL default '0',
`active` int(11) NOT NULL default '0',
`version` varchar(32) default null,
PRIMARY KEY (`id`)
) ENGINE=MYISAM CHARACTER SET utf8mb4 ;
Expand Down

0 comments on commit b9a0e8a

Please sign in to comment.