diff --git a/db/migrations/001_app_records.sql b/db/migrations/001_app_records.sql index 9317315..d8bfee5 100644 --- a/db/migrations/001_app_records.sql +++ b/db/migrations/001_app_records.sql @@ -1,11 +1,2 @@ -CREATE TABLE IF NOT EXISTS app_records ( - id BIGSERIAL PRIMARY KEY, - tenant_key TEXT NOT NULL, - record_kind TEXT NOT NULL, - payload JSONB NOT NULL, - created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), - updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() -); - -CREATE INDEX IF NOT EXISTS app_records_tenant_kind_idx - ON app_records (tenant_key, record_kind, created_at DESC); +-- Replaced by product-specific LaunchCheck schema in 001_launchcheck.sql. +-- Kept as an intentionally empty compatibility migration for fresh full-stack scaffold installs.