This website requires JavaScript.
Explore
Help
Sign In
deep-stack
/
ipld-eth-server
Watch
6
Star
0
Fork
0
You've already forked ipld-eth-server
forked from
cerc-io/ipld-eth-server
Code
Pull Requests
Activity
354e490894
ipld-eth-server
/
db
/
migrations
/
00017_add_is_final_to_blocks.sql
8 lines
126 B
MySQL
Raw
Normal View
History
Unescape
Escape
Change migration timestamp from epoch to yyyymmddhhmmss
2019-01-22 12:15:29 +00:00
-- +goose Up
ALTER
TABLE
blocks
ADD
COLUMN
is_final
BOOLEAN
;
-- +goose Down
ALTER
TABLE
blocks
Remove tx from migrations (goose does it automagically)
2019-01-22 14:07:11 +00:00
DROP
COLUMN
is_final
;
Copy Permalink