User & Account Data
Profile & Channel
-- Table structure for table `tbl_artist`
CREATE TABLE `tbl_artist` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`image` varchar(255) NOT NULL,
`bio` text NOT NULL,
`status` int(11) NOT NULL DEFAULT 1,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- Table structure for table `tbl_block_channel`
CREATE TABLE `tbl_block_channel` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`block_user_id` int(11) NOT NULL,
`block_channel_id` varchar(255) NOT NULL,
`status` int(11) NOT NULL DEFAULT 1,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
History​
--
-- Table structure for table `tbl_history`
--
CREATE TABLE `tbl_history` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`content_type` int(11) NOT NULL COMMENT '1- Video, 2- Music, 3- Reels, 4- Podcasts, 5- Playlist, 6- Radio ',
`content_id` int(11) NOT NULL,
`episode_id` int(11) NOT NULL,
`stop_time` int(11) NOT NULL,
`status` int(11) NOT NULL DEFAULT 1,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
Watch Later​
--
-- Table structure for table `tbl_watch_later`
--
CREATE TABLE `tbl_watch_later` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`content_type` int(11) NOT NULL COMMENT ' 1- Video, 2- Music, 3- Reels, 4- Podcasts, 5- Playlist, 6- Radio ',
`content_id` int(11) NOT NULL,
`episode_id` int(11) NOT NULL DEFAULT 0,
`status` int(11) NOT NULL DEFAULT 1,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;