Files

7 lines
255 B
SQL
Raw Permalink Normal View History

-- Bad migration: creates table WITHOUT tenant_id (for validator testing)
CREATE TABLE IF NOT EXISTS plugin_bad_data (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
name VARCHAR(255) NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
);