foodsnap/supabase/migrations/20260221012731_gamification_streaks.sql

5 lines
179 B
MySQL
Raw Permalink Normal View History

alter table "public"."profiles"
add column "current_streak" integer not null default 0,
add column "longest_streak" integer not null default 0,
add column "last_scan_date" date;