fix(db): remove redundant _snipe_shared_migrations DDL from SQL file (runner owns it)

This commit is contained in:
pyr0ball 2026-05-18 09:09:35 -07:00
parent 1d6556072f
commit 9d8b627fe1

View file

@ -36,8 +36,3 @@ CREATE TABLE IF NOT EXISTS reported_sellers (
UNIQUE (platform, platform_seller_id)
);
-- Migration tracking (same pattern as CommunityDB in circuitforge-core)
CREATE TABLE IF NOT EXISTS _snipe_shared_migrations (
filename TEXT PRIMARY KEY,
applied_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);