storj/multinode/multinodedb/dbx/multinodedb.dbx.pgx.sql

20 lines
421 B
MySQL
Raw Normal View History

-- 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,
tag text NOT NULL,
public_address text NOT NULL,
api_secret bytea NOT NULL,
logo bytea NOT NULL,
PRIMARY KEY ( id )
);