Skip to content

Commit

Permalink
fix(sql): remove unneeded job account inserts
Browse files Browse the repository at this point in the history
  • Loading branch information
solareon authored Aug 28, 2024
1 parent 6d8fd56 commit 2f5c46b
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions qbox.sql
Original file line number Diff line number Diff line change
Expand Up @@ -274,19 +274,6 @@ CREATE TABLE IF NOT EXISTS `bank_accounts_new` (
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

INSERT INTO `bank_accounts_new` (`id`, `amount`, `transactions`, `auth`, `isFrozen`, `creator`) VALUES
('ambulance', 0, '[]', '[]', 0, NULL),
('cardealer', 0, '[]', '[]', 0, NULL),
('mechanic', 0, '[]', '[]', 0, NULL),
('police', 0, '[]', '[]', 0, NULL),
('realestate', 0, '[]', '[]', 0, NULL),
('lostmc', 0, '[]', '[]', 0, NULL),
('ballas', 0, '[]', '[]', 0, NULL),
('vagos', 0, '[]', '[]', 0, NULL),
('cartel', 0, '[]', '[]', 0, NULL),
('families', 0, '[]', '[]', 0, NULL),
('triads', 0, '[]', '[]', 0, NULL);

CREATE TABLE IF NOT EXISTS `player_transactions` (
`id` varchar(50) NOT NULL,
`isFrozen` int(11) DEFAULT 0,
Expand Down

0 comments on commit 2f5c46b

Please sign in to comment.