openvk/install/sqls/00053-new-fields.sql
mrilyew 0aecc299cf
feat(profile): fav games & custom fields (#1193)
* add fav games

* add additional fields

* add gui 4 dis

* add maxlength
2024-12-20 17:34:29 +03:00

10 lines
490 B
SQL

ALTER TABLE `profiles` ADD `fav_games` MEDIUMTEXT NULL DEFAULT NULL AFTER `fav_quote`;
CREATE TABLE `additional_fields` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT,
`owner` BIGINT(20) UNSIGNED NOT NULL,
`name` VARCHAR(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`text` MEDIUMTEXT COLLATE utf8mb4_unicode_520_ci NOT NULL,
`place` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE = InnoDB;
ALTER TABLE `additional_fields` ADD INDEX(`owner`);