Arcturus-Community/sqlupdates/2_0_0_TO_2_1_0-RC-1.sql

10 lines
307 B
MySQL
Raw Normal View History

2019-05-27 15:00:22 +02:00
CREATE TABLE `users_saved_searches` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`search_code` varchar(255) NOT NULL,
`filter` varchar(255) NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
2019-05-27 21:55:23 +02:00
);
ALTER TABLE `users_settings`
ADD COLUMN `ui_flags` int(11) NOT NULL DEFAULT 1 AFTER `forums_post_count`;