-- Watch‑Later list CREATE TABLE user_watch_later ( user_id BIGINT REFERENCES users(id) ON DELETE CASCADE, title_id BIGINT REFERENCES titles(id) ON DELETE CASCADE, added_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (user_id, title_id) );
Feature Draft – “Smart “Watch‑Later” & Personalized Recommendation Engine” for movies4u.vip Official Site Feature Name – Watch‑Later + Smart Recommendations
-- Titles (movies/TV) CREATE TABLE titles ( id BIGINT PRIMARY KEY, title VARCHAR(255) NOT NULL, year INT, runtime_min INT, genre VARCHAR(100), director VARCHAR(255), rating DECIMAL(2,1), license_expires DATE, ... );