Files
leocrm/app/plugins/builtins/migrations/0001_bad_migration.sql
T

7 lines
255 B
SQL
Raw 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()
);