mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-02 08:40:53 +03:00
10d0ec0448
added usage of cli
8 lines
298 B
SQL
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;
|
|
|
|
|