2020-09-30 17:38:28 +01:00
|
|
|
-- AUTOGENERATED BY storj.io/dbx
|
|
|
|
-- DO NOT EDIT
|
2020-10-14 15:26:50 +01:00
|
|
|
CREATE TABLE members (
|
|
|
|
id bytea NOT NULL,
|
|
|
|
email text NOT NULL,
|
|
|
|
name text NOT NULL,
|
|
|
|
password_hash bytea NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|
2020-09-30 17:38:28 +01:00
|
|
|
CREATE TABLE nodes (
|
|
|
|
id bytea NOT NULL,
|
|
|
|
name text NOT NULL,
|
2020-10-02 17:21:58 +01:00
|
|
|
public_address text NOT NULL,
|
2020-09-30 17:38:28 +01:00
|
|
|
api_secret bytea NOT NULL,
|
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|