-- Organizations table CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; CREATE TABLE organizations ( id UUID PRIMARY KEY DEFAULT gen_random_uuid(), name VARCHAR(255) NOT NULL, plan_type VARCHAR(50) NOT NULL CHECK (plan_type IN ('basic', 'premium', 'enterprise')), created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), updated_at TIMESTAMP WITH TIME ZONE DEFAULT NOW() ); -- Indexes CREATE INDEX idx_organizations_plan_type ON organizations(plan_type); CREATE INDEX idx_organizations_created_at ON organizations(created_at);