CREATE TABLE "clinic_settings" ( "organization_id" text PRIMARY KEY NOT NULL, "address" text DEFAULT '' NOT NULL, "city" text DEFAULT '' NOT NULL, "country" text DEFAULT '' NOT NULL, "latitude" double precision, "longitude" double precision, "created_at" timestamp DEFAULT now() NOT NULL, "updated_at" timestamp DEFAULT now() NOT NULL ); --> statement-breakpoint ALTER TABLE "clinic_settings" ADD CONSTRAINT "clinic_settings_organization_id_organization_id_fk" FOREIGN KEY ("organization_id") REFERENCES "public"."organization"("id") ON DELETE cascade ON UPDATE no action;