CREATE TABLE "services" ( "id" text PRIMARY KEY NOT NULL, "name" text NOT NULL, "description" text, "unit_price" numeric(10, 2) NOT NULL, "category" text, "active" boolean DEFAULT true NOT NULL, "migrated_from" text, "migrated_id" text, "created_at" timestamp with time zone DEFAULT now() NOT NULL );