mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 16:23:21 +00:00
Add files
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
CREATE TABLE `user_contacts` (
|
||||
`id` int(11) NOT NULL,
|
||||
`identifier` varchar(255) NOT NULL,
|
||||
`name` varchar(255) NOT NULL,
|
||||
`number` int(11) NOT NULL
|
||||
);
|
||||
|
||||
ALTER TABLE `user_contacts` ADD PRIMARY KEY (`id`);
|
||||
|
||||
ALTER TABLE `users`
|
||||
ADD COLUMN `phone_number` INT NULL AFTER `position`;
|
||||
Reference in New Issue
Block a user