mirror of
https://github.com/ND-Framework/ND_Core.git
synced 2026-08-16 21:46:03 +01:00
feat: user data for db & character fetching
This commit is contained in:
12
database/users.sql
Normal file
12
database/users.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
CREATE TABLE IF NOT EXISTS `nd_users` (
|
||||
`user_id` INT(11) NOT NULL AUTO_INCREMENT,
|
||||
`id_steam` LONGTEXT NULL DEFAULT NULL,
|
||||
`id_discord` LONGTEXT NULL DEFAULT NULL,
|
||||
`id_xbl` LONGTEXT NULL DEFAULT NULL,
|
||||
`id_live` LONGTEXT NULL DEFAULT NULL,
|
||||
`id_license` LONGTEXT NULL DEFAULT NULL,
|
||||
`id_license2` LONGTEXT NULL DEFAULT NULL,
|
||||
`id_fivem` LONGTEXT NULL DEFAULT NULL,
|
||||
`id_ip` LONGTEXT NULL DEFAULT NULL,
|
||||
PRIMARY KEY (`user_id`) USING BTREE
|
||||
) COLLATE='utf8mb4_unicode_ci';
|
||||
Reference in New Issue
Block a user