Skip to content

Commit

Permalink
chore: sync sql with txAdminRecipe
Browse files Browse the repository at this point in the history
  • Loading branch information
D4isDAVID committed Sep 23, 2024
1 parent 53b3a50 commit 7ce207b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
2 changes: 0 additions & 2 deletions config/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,8 @@ return {
---@type [TableName, ColumnName][]
characterDataTables = {
{'properties', 'owner'},
{'apartments', 'citizenid'},
{'bank_accounts_new', 'id'},
{'playerskins', 'citizenid'},
{'player_houses', 'citizenid'},
{'player_mails', 'citizenid'},
{'player_outfits', 'citizenid'},
{'player_vehicles', 'citizenid'},
Expand Down
10 changes: 0 additions & 10 deletions qbx_core.sql
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,6 @@ CREATE TABLE IF NOT EXISTS `bans` (
KEY `ip` (`ip`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE IF NOT EXISTS `player_contacts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(50) DEFAULT NULL,
`name` varchar(50) DEFAULT NULL,
`number` varchar(50) DEFAULT NULL,
`iban` varchar(50) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `citizenid` (`citizenid`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE IF NOT EXISTS `player_groups` (
`citizenid` VARCHAR(50) NOT NULL,
`group` VARCHAR(50) NOT NULL,
Expand Down

0 comments on commit 7ce207b

Please sign in to comment.