quivr/supabase/migrations/20240103181249_premium.sql
Stan Girard 10d0ec0448 feat: 🎸 supabase
added usage of cli
2024-01-03 21:53:37 +01:00

8 lines
298 B
SQL

alter table "public"."user_settings" add column "is_premium" boolean not null default false;
alter table "public"."user_settings" alter column "max_brain_size" set not null;
alter table "public"."user_settings" alter column "max_brain_size" set data type bigint using "max_brain_size"::bigint;