Arcturus-Community/sqlupdates/2_0_0_TO_2_1_0-RC-1.sql
2019-05-27 16:00:22 +03:00

7 lines
201 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`)
);