Skip to content

Commit

Permalink
Merge pull request #14 from Maksonis/master
Browse files Browse the repository at this point in the history
Allow non-int class ids in bundle_web2print_favorite_outputdefinitions
  • Loading branch information
fashxp authored Apr 28, 2020
2 parents 551447c + 56ede78 commit f32f9a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tools/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function install()
$db->query("
CREATE TABLE IF NOT EXISTS `" . Dao::TABLE_NAME . "` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`o_classId` int(11) NOT NULL,
`o_classId` varchar(50) NOT NULL,
`description` varchar(255) COLLATE utf8_bin NOT NULL,
`configuration` longtext CHARACTER SET latin1,
PRIMARY KEY (`id`)
Expand Down Expand Up @@ -82,4 +82,4 @@ public function uninstall()
}
}

}
}

0 comments on commit f32f9a9

Please sign in to comment.