· 6 years ago · May 08, 2019, 05:20 PM
1CREATE TABLE IF NOT EXISTS `drug_farms` (
2 `id` text,
3 `type` text,
4 `task` text,
5 `tasksLeft` int(11) DEFAULT NULL,
6 `delay` bigint(20) DEFAULT NULL
7)
8
9INSERT INTO (`items`, `name`, `label`, `limit`, `rare`, `can_remove`) VALUES
10
11('weed_seed', 'Weed Seed', 1, 0, 1),
12('coke_ingredients', 'Coke Ingredients', 1, 0, 1),
13('meth_ingredients', 'Meth Ingredients', 1, 0, 1)