Hello:
Here is the sql file I run. All the tables have prefix deals_.
If I do not add the prefix in
CREATE TABLE `hide_categories` (
I got an error.
DROP TABLE IF EXISTS `deals_hide_categories` ;# MySQL returned an empty result set (i.e. zero rows).
# MySQL returned an empty result set (i.e. zero rows).
CREATE TABLE `deals_hide_categories` (
`hide_categories_id` int( 11 ) NOT NULL AUTO_INCREMENT ,
`categories_id` int( 11 ) NOT NULL ,
`visibility_status` int( 11 ) NOT NULL ,
PRIMARY KEY ( `hide_categories_id` )
);# MySQL returned an empty result set (i.e. zero rows).
# MySQL returned an empty result set (i.e. zero rows).
However, I can't see the hide option in admin? Anything wrong?
Please help.
Thanks
Bookmarks