forked from cerc-io/ipld-eth-server
Add an addresses table
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE public.addresses
|
||||
(
|
||||
id SERIAL PRIMARY KEY,
|
||||
address character varying(42),
|
||||
UNIQUE (address)
|
||||
);
|
||||
|
||||
-- +goose Down
|
||||
-- SQL in this section is executed when the migration is rolled back.
|
||||
DROP TABLE public.addresses;
|
||||
Reference in New Issue
Block a user