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
4 changes: 2 additions & 2 deletions node/migrations/0001_initial.sql
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
-- Initial Postgres schema for the zkCoins node state-layer.
-- Initial Postgres schema for the zkCoins server state-layer.
--
-- This migration is part of PR-A1 in the 3-PR Postgres migration
-- series (file-based bincode -> Postgres). The schema is installed
-- by `db::connect_and_migrate`; nothing here is wired into the
-- node bootstrap yet — that happens in PR-A2 (state + latest block)
-- server bootstrap yet — that happens in PR-A2 (state + latest block)
-- and PR-A3 (accounts + usernames).
--
-- Design notes:
Expand Down
2 changes: 1 addition & 1 deletion node/migrations/0003_pending_inscriptions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
-- instead of a silent state-machine drift.
-- * The partial index on `status <> 'complete'` keeps the resumer's
-- boot-time scan O(pending) instead of O(total). After enough
-- mints this list will be perpetually empty on a healthy node.
-- mints this list will be perpetually empty on a healthy server.

CREATE TABLE pending_inscriptions (
id BIGSERIAL PRIMARY KEY,
Expand Down
Loading