CREATE TABLE "preferences" ( "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "preferences_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), "user_id" integer, "data" jsonb, CONSTRAINT "preferences_user_id_unique" UNIQUE("user_id") ); --> statement-breakpoint CREATE TABLE "tokens" ( "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "tokens_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), "user_id" integer, "refresh_token" text, "access_token" text, "expires_at" timestamp DEFAULT now() NOT NULL, CONSTRAINT "tokens_user_id_unique" UNIQUE("user_id") ); --> statement-breakpoint CREATE TABLE "users" ( "id" integer PRIMARY KEY NOT NULL, "name" text NOT NULL, "avatar" text NOT NULL, "city" text, "country" text, "sex" text, "weight" numeric, "created_at" timestamp DEFAULT now() NOT NULL ); --> statement-breakpoint ALTER TABLE "preferences" ADD CONSTRAINT "preferences_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint ALTER TABLE "tokens" ADD CONSTRAINT "tokens_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;