CREATE TABLE "entitybankaccounts" ( "id" bigint PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY (sequence name "entitybankaccounts_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 9223372036854775807 START WITH 1 CACHE 1), "created_at" timestamp with time zone DEFAULT now() NOT NULL, "tenant" bigint NOT NULL, "iban_encrypted" jsonb NOT NULL, "bic_encrypted" jsonb NOT NULL, "bank_name_encrypted" jsonb NOT NULL, "description" text, "updated_at" timestamp with time zone, "updated_by" uuid, "archived" boolean DEFAULT false NOT NULL ); --> statement-breakpoint ALTER TABLE "entitybankaccounts" ADD CONSTRAINT "entitybankaccounts_tenant_tenants_id_fk" FOREIGN KEY ("tenant") REFERENCES "public"."tenants"("id") ON DELETE no action ON UPDATE no action; --> statement-breakpoint ALTER TABLE "entitybankaccounts" ADD CONSTRAINT "entitybankaccounts_updated_by_auth_users_id_fk" FOREIGN KEY ("updated_by") REFERENCES "public"."auth_users"("id") ON DELETE no action ON UPDATE no action;