video_maker
0 rows where v_uid = "v_03mpl"
This data as json
0 records
CREATE TABLE video_maker ( v_uid TEXT NOT NULL REFERENCES videos(uid) ON DELETE CASCADE, m_uid TEXT NOT NULL REFERENCES makers(uid) ON DELETE CASCADE, PRIMARY KEY (v_uid, m_uid) ); CREATE INDEX idx_video_maker_m ON video_maker(m_uid);