mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
feat: catalog style toggle (classic/new) with admin mode & favorites
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE IF NOT EXISTS catalog_favorites (
|
||||
user_id INT NOT NULL,
|
||||
type ENUM('offer', 'page') NOT NULL,
|
||||
target_id INT NOT NULL,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (user_id, type, target_id)
|
||||
);
|
||||
Reference in New Issue
Block a user