From 9d8b627fe120b9c879d59dc4471064e56635e9c0 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Mon, 18 May 2026 09:09:35 -0700 Subject: [PATCH] fix(db): remove redundant _snipe_shared_migrations DDL from SQL file (runner owns it) --- app/db/pg_migrations/001_shared_tables.sql | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/db/pg_migrations/001_shared_tables.sql b/app/db/pg_migrations/001_shared_tables.sql index d78631d..a82f135 100644 --- a/app/db/pg_migrations/001_shared_tables.sql +++ b/app/db/pg_migrations/001_shared_tables.sql @@ -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() -);