CREATE TABLE `customers` ( `id` text PRIMARY KEY NOT NULL, `name` text NOT NULL, `email` text, `phone` text, `created_at` text NOT NULL ); --> statement-breakpoint CREATE TABLE `vendors` ( `id` text PRIMARY KEY NOT NULL, `name` text NOT NULL, `category` text DEFAULT 'Subcontractor' NOT NULL, `email` text, `phone` text, `address` text, `created_at` text NOT NULL );