Update esx_datastore.sql

This commit is contained in:
Jérémie N'gadi
2017-08-07 12:21:06 +02:00
committed by GitHub
parent 8a2715535a
commit 0d2f61a3a6
+3 -1
View File
@@ -1,3 +1,5 @@
USE `essentialmode`;
CREATE TABLE `datastore` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
@@ -12,4 +14,4 @@ CREATE TABLE `datastore_data` (
`owner` varchar(255) NOT NULL,
`data` longtext,
PRIMARY KEY (`id`)
);
);