aab2f3d898
Check Cross-Plugin Imports / check (push) Has been cancelled
- Remove import from app.plugins.builtins.test_sample (deleted in Phase 4) - Define SamplePlugin inline in test_plugins.py with same lifecycle behavior - Replace all test_sample/TestSamplePlugin references with sample_plugin/SamplePlugin - Create migration SQL files: 0001_sample_plugin.sql, 0001_bad_migration.sql - Update discover_builtins test to check for tags plugin instead
7 lines
255 B
SQL
7 lines
255 B
SQL
-- 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()
|
|
);
|