mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 02:01:33 +00:00
Update qbcore.sql
This commit is contained in:
+10
@@ -53,3 +53,13 @@ CREATE TABLE IF NOT EXISTS `whitelist` (
|
|||||||
PRIMARY KEY (`steam`),
|
PRIMARY KEY (`steam`),
|
||||||
UNIQUE KEY `identifier` (`license`)
|
UNIQUE KEY `identifier` (`license`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||||
|
|
||||||
|
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=12433 DEFAULT CHARSET=utf8mb4;
|
||||||
|
|||||||
Reference in New Issue
Block a user