diff --git a/esx_shops.sql b/esx_shops.sql index 19131d39..e60fdd04 100644 --- a/esx_shops.sql +++ b/esx_shops.sql @@ -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) -; \ No newline at end of file +;