f311722854
Change-Id: Ia5172f249c18540683f66ef244c2c6d39aa3da0a
18 lines
379 B
SQL
18 lines
379 B
SQL
-- AUTOGENERATED BY storj.io/dbx
|
|
-- DO NOT EDIT
|
|
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 )
|
|
);
|
|
CREATE TABLE nodes (
|
|
id bytea NOT NULL,
|
|
name text NOT NULL,
|
|
public_address text NOT NULL,
|
|
api_secret bytea NOT NULL,
|
|
PRIMARY KEY ( id )
|
|
);
|