mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 10:18:54 +00:00
Update esx_shops.sql
int - Integer display width is deprecated and will be removed in a future release.
This commit is contained in:
+3
-3
@@ -1,10 +1,10 @@
|
||||
USE `es_extended`;
|
||||
|
||||
CREATE TABLE `shops` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`store` varchar(100) NOT NULL,
|
||||
`item` varchar(100) NOT NULL,
|
||||
`price` int(11) NOT NULL,
|
||||
`price` int NOT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
);
|
||||
@@ -16,4 +16,4 @@ INSERT INTO `shops` (store, item, price) VALUES
|
||||
('RobsLiquor','water',15),
|
||||
('LTDgasoline','bread',30),
|
||||
('LTDgasoline','water',15)
|
||||
;
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user