Fixed max key length error

This commit is contained in:
ElPumpo
2018-11-04 22:21:19 +01:00
parent ae1a7c8ca0
commit a5bebc8bec
+2 -2
View File
@@ -11,8 +11,8 @@ CREATE TABLE `datastore` (
CREATE TABLE `datastore_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`owner` varchar(255),
`name` varchar(60) NOT NULL,
`owner` varchar(60),
`data` longtext,
INDEX index_datastore_name (`name`),