mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 12:01:45 +00:00
Update esx_datastore.sql
INT - Integer display width is deprecated and will be removed in a future release.
This commit is contained in:
+2
-2
@@ -3,13 +3,13 @@ USE `es_extended`;
|
||||
CREATE TABLE `datastore` (
|
||||
`name` VARCHAR(60) NOT NULL,
|
||||
`label` VARCHAR(100) NOT NULL,
|
||||
`shared` INT(11) NOT NULL,
|
||||
`shared` INT NOT NULL,
|
||||
|
||||
PRIMARY KEY (`name`)
|
||||
);
|
||||
|
||||
CREATE TABLE `datastore_data` (
|
||||
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
||||
`id` INT NOT NULL AUTO_INCREMENT,
|
||||
`name` VARCHAR(60) NOT NULL,
|
||||
`owner` VARCHAR(40),
|
||||
`data` LONGTEXT,
|
||||
|
||||
Reference in New Issue
Block a user