mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 07:20:50 +01:00
13 lines
432 B
SQL
13 lines
432 B
SQL
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`)
|
|
);
|
|
|
|
ALTER TABLE `users_settings`
|
|
ADD COLUMN `ui_flags` int(11) NOT NULL DEFAULT 1 AFTER `forums_post_count`;
|
|
|
|
ALTER TABLE `users_settings`
|
|
ADD COLUMN `has_gotten_default_saved_searches` tinyint(1) NOT NULL DEFAULT 0 AFTER `ui_flags`; |