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() -);