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
10 lines
430 B
SQL
10 lines
430 B
SQL
-- Sample plugin migration: creates plugin_sample_data table with tenant_id
|
|
CREATE TABLE IF NOT EXISTS plugin_sample_data (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
tenant_id UUID NOT NULL,
|
|
name VARCHAR(255) NOT NULL,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
|
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
);
|
|
CREATE INDEX IF NOT EXISTS ix_plugin_sample_data_tenant ON plugin_sample_data(tenant_id);
|