Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions indexer/db/migrations/001_initial.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ CREATE TABLE IF NOT EXISTS invoices (
repaid_at BIGINT
);

ALTER TABLE invoices ADD COLUMN IF NOT EXISTS buyer_confirmed_at BIGINT;

CREATE TABLE IF NOT EXISTS pool_snapshots (
id INTEGER PRIMARY KEY,
total_deposits NUMERIC NOT NULL DEFAULT 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX IF NOT EXISTS idx_events_log_contract_id ON events_log(contract_id);
Loading