mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
7 lines
201 B
MySQL
7 lines
201 B
MySQL
|
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`)
|
||
|
);
|