Skip to content

Commit

Permalink
chore: remove migration tracking table
Browse files Browse the repository at this point in the history
  • Loading branch information
vasco-santos committed Feb 7, 2022
1 parent 834d3cc commit d9d8e24
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions packages/db/postgres/tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -226,17 +226,6 @@ CREATE TABLE IF NOT EXISTS psa_pin_request
updated_at TIMESTAMP WITH TIME ZONE DEFAULT timezone('utc'::text, now()) NOT NULL
);

-- A migration tracker.
CREATE TABLE IF NOT EXISTS migration_tracker
(
id BIGSERIAL PRIMARY KEY,
cid TEXT NOT NULL,
duration BIGINT,
dump_started_at TIMESTAMP WITH TIME ZONE,
dump_ended_at TIMESTAMP WITH TIME ZONE NOT NULL,
inserted_at TIMESTAMP WITH TIME ZONE DEFAULT timezone('utc'::text, now()) NOT NULL
);

CREATE TABLE IF NOT EXISTS name
(
-- base36 "libp2p-key" encoding of the public key
Expand Down

0 comments on commit d9d8e24

Please sign in to comment.