mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-02 11:18:53 +00:00
4326238f28
- Tab indents - Swedish translation - Security update - Readme improvements - SQL file improved - Improved i18n formatting
15 lines
272 B
SQL
15 lines
272 B
SQL
USE `essentialmode`;
|
|
|
|
CREATE TABLE `user_contacts` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`identifier` varchar(255) NOT NULL,
|
|
`name` varchar(255) NOT NULL,
|
|
`number` int(11) NOT NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
);
|
|
|
|
ALTER TABLE `users`
|
|
ADD COLUMN `phone_number` INT NULL
|
|
;
|