You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE IF NOT EXISTS channel ( channel_id TEXT UNIQUE NOT NULL, channel_name TEXT NOT NULL );
CREATE TABLE IF NOT EXISTS basic_video_data (video_title TEXT NOT NULL, video_link TEXT UNIQUE NOT NULL, video_views TEXT, video_duration TEXT, video_availability INTEGER NOT NULL, channel_id TEXT NOT NULL, FOREIGN KEY (channel_id) REFERENCES channel (channel_id) ON UPDATE CASCADE ON DELETE CASCADE );