Skip to content

Commit

Permalink
fix: change some columns types (address comment from @joanestebanr 2n…
Browse files Browse the repository at this point in the history
…d part)
  • Loading branch information
Stefan-Ethernal committed Oct 1, 2024
1 parent 8cbecea commit f3baefd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ethtxmanager/sqlstorage/migrations/0001.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ CREATE TABLE IF NOT EXISTS monitored_txs (
gas_tip_cap TEXT, -- *big.Int
"status" TEXT NOT NULL,
block_number TEXT NOT NULL, -- *big.Int
history TEXT, -- JSON encoded string
created_at TEXT NOT NULL,
updated_at TEXT NOT NULL,
history JSONB,
created_at TIMESTAMP NOT NULL,
updated_at TIMESTAMP NOT NULL,
estimate_gas INTEGER NOT NULL -- 0 = FALSE, 1 = TRUE
);

Expand Down

0 comments on commit f3baefd

Please sign in to comment.