mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 16:23:21 +00:00
Fixed max key length error
This commit is contained in:
+2
-2
@@ -11,8 +11,8 @@ CREATE TABLE `datastore` (
|
|||||||
|
|
||||||
CREATE TABLE `datastore_data` (
|
CREATE TABLE `datastore_data` (
|
||||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`name` varchar(255) NOT NULL,
|
`name` varchar(60) NOT NULL,
|
||||||
`owner` varchar(255),
|
`owner` varchar(60),
|
||||||
`data` longtext,
|
`data` longtext,
|
||||||
|
|
||||||
INDEX index_datastore_name (`name`),
|
INDEX index_datastore_name (`name`),
|
||||||
|
|||||||
Reference in New Issue
Block a user