πŸ“ Cara dapat API Key (Legacy):
1. Buka supabase.com/dashboard β†’ pilih project
2. Settings β†’ API Keys β†’ tab "Legacy anon, service_role API keys"
3. Copy anon key (format: eyJhbGci...)
4. Project URL: https://[project-id].supabase.co

πŸ—„οΈ SQL β€” jalankan sekali di SQL Editor: CREATE TABLE IF NOT EXISTS daily_data ( id bigint generated always as identity primary key, report_date date not null, ad_name text not null, spent numeric default 0, link_clicks integer default 0, impressions integer default 0, reach integer default 0, shopee_clicks integer default 0, orders integer default 0, order_value numeric default 0, komisi numeric default 0, created_at timestamptz default now(), unique(report_date, ad_name) ); ALTER TABLE daily_data DISABLE ROW LEVEL SECURITY;