Add Question
Import CSV
Format: question, opt1, opt2, opt3, opt4, correct_idx, category
Schema Reference
Ensure your Supabase table matches this structure for the app to work correctly.
create table if not exists quizzes (
id bigint generated by default as identity primary key,
question text not null,
options jsonb not null,
correct_index int not null,
category text default 'General',
created_at timestamp with time zone default timezone('utc'::text, now())
);