2020-01-03 19:13:57 +00:00
|
|
|
-- AUTOGENERATED BY storj.io/dbx
|
|
|
|
-- DO NOT EDIT
|
2022-12-12 21:06:46 +00:00
|
|
|
CREATE TABLE account_freeze_events (
|
|
|
|
user_id bytea NOT NULL,
|
|
|
|
event integer NOT NULL,
|
|
|
|
limits jsonb,
|
|
|
|
created_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
|
|
|
PRIMARY KEY ( user_id, event )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE accounting_rollups (
|
|
|
|
node_id bytea NOT NULL,
|
|
|
|
start_time timestamp with time zone NOT NULL,
|
|
|
|
put_total bigint NOT NULL,
|
|
|
|
get_total bigint NOT NULL,
|
|
|
|
get_audit_total bigint NOT NULL,
|
|
|
|
get_repair_total bigint NOT NULL,
|
|
|
|
put_repair_total bigint NOT NULL,
|
|
|
|
at_rest_total double precision NOT NULL,
|
2022-07-11 21:18:10 +01:00
|
|
|
interval_end_time timestamp with time zone,
|
2020-11-04 17:24:11 +00:00
|
|
|
PRIMARY KEY ( node_id, start_time )
|
2020-01-03 19:13:57 +00:00
|
|
|
);
|
|
|
|
CREATE TABLE accounting_timestamps (
|
|
|
|
name text NOT NULL,
|
|
|
|
value timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( name )
|
|
|
|
);
|
2022-06-16 17:48:07 +01:00
|
|
|
CREATE TABLE billing_balances (
|
|
|
|
user_id bytea NOT NULL,
|
|
|
|
balance bigint NOT NULL,
|
|
|
|
last_updated timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( user_id )
|
|
|
|
);
|
2022-04-26 21:23:27 +01:00
|
|
|
CREATE TABLE billing_transactions (
|
2022-06-16 17:48:07 +01:00
|
|
|
id bigserial NOT NULL,
|
2022-04-26 21:23:27 +01:00
|
|
|
user_id bytea NOT NULL,
|
|
|
|
amount bigint NOT NULL,
|
|
|
|
currency text NOT NULL,
|
|
|
|
description text NOT NULL,
|
2022-06-16 17:48:07 +01:00
|
|
|
source text NOT NULL,
|
|
|
|
status text NOT NULL,
|
|
|
|
type text NOT NULL,
|
|
|
|
metadata jsonb NOT NULL,
|
2022-04-26 21:23:27 +01:00
|
|
|
timestamp timestamp with time zone NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
2022-06-16 17:48:07 +01:00
|
|
|
PRIMARY KEY ( id )
|
2022-04-26 21:23:27 +01:00
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE bucket_bandwidth_rollups (
|
|
|
|
bucket_name bytea NOT NULL,
|
|
|
|
project_id bytea NOT NULL,
|
2020-02-11 15:33:34 +00:00
|
|
|
interval_start timestamp with time zone NOT NULL,
|
2020-01-03 19:13:57 +00:00
|
|
|
interval_seconds integer NOT NULL,
|
|
|
|
action integer NOT NULL,
|
|
|
|
inline bigint NOT NULL,
|
|
|
|
allocated bigint NOT NULL,
|
|
|
|
settled bigint NOT NULL,
|
2023-03-02 10:06:15 +00:00
|
|
|
PRIMARY KEY ( project_id, bucket_name, interval_start, action )
|
2020-01-03 19:13:57 +00:00
|
|
|
);
|
2020-11-30 19:34:42 +00:00
|
|
|
CREATE TABLE bucket_bandwidth_rollup_archives (
|
|
|
|
bucket_name bytea NOT NULL,
|
|
|
|
project_id bytea NOT NULL,
|
|
|
|
interval_start timestamp with time zone NOT NULL,
|
|
|
|
interval_seconds integer NOT NULL,
|
|
|
|
action integer NOT NULL,
|
|
|
|
inline bigint NOT NULL,
|
|
|
|
allocated bigint NOT NULL,
|
|
|
|
settled bigint NOT NULL,
|
|
|
|
PRIMARY KEY ( bucket_name, project_id, interval_start, action )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE bucket_storage_tallies (
|
|
|
|
bucket_name bytea NOT NULL,
|
|
|
|
project_id bytea NOT NULL,
|
2020-02-11 15:33:34 +00:00
|
|
|
interval_start timestamp with time zone NOT NULL,
|
2021-06-30 10:58:26 +01:00
|
|
|
total_bytes bigint NOT NULL DEFAULT 0,
|
2020-01-03 19:13:57 +00:00
|
|
|
inline bigint NOT NULL,
|
|
|
|
remote bigint NOT NULL,
|
2021-06-30 10:58:26 +01:00
|
|
|
total_segments_count integer NOT NULL DEFAULT 0,
|
2020-01-03 19:13:57 +00:00
|
|
|
remote_segments_count integer NOT NULL,
|
|
|
|
inline_segments_count integer NOT NULL,
|
|
|
|
object_count integer NOT NULL,
|
|
|
|
metadata_size bigint NOT NULL,
|
|
|
|
PRIMARY KEY ( bucket_name, project_id, interval_start )
|
|
|
|
);
|
|
|
|
CREATE TABLE coinpayments_transactions (
|
|
|
|
id text NOT NULL,
|
|
|
|
user_id bytea NOT NULL,
|
|
|
|
address text NOT NULL,
|
2022-03-24 16:19:47 +00:00
|
|
|
amount_numeric bigint NOT NULL,
|
|
|
|
received_numeric bigint NOT NULL,
|
2020-01-03 19:13:57 +00:00
|
|
|
status integer NOT NULL,
|
|
|
|
key text NOT NULL,
|
|
|
|
timeout integer NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|
|
|
|
CREATE TABLE graceful_exit_progress (
|
|
|
|
node_id bytea NOT NULL,
|
|
|
|
bytes_transferred bigint NOT NULL,
|
2020-04-01 22:58:46 +01:00
|
|
|
pieces_transferred bigint NOT NULL DEFAULT 0,
|
|
|
|
pieces_failed bigint NOT NULL DEFAULT 0,
|
2020-02-11 15:33:34 +00:00
|
|
|
updated_at timestamp with time zone NOT NULL,
|
2020-01-03 19:13:57 +00:00
|
|
|
PRIMARY KEY ( node_id )
|
|
|
|
);
|
2021-06-11 14:32:07 +01:00
|
|
|
CREATE TABLE graceful_exit_segment_transfer_queue (
|
|
|
|
node_id bytea NOT NULL,
|
|
|
|
stream_id bytea NOT NULL,
|
|
|
|
position bigint NOT NULL,
|
|
|
|
piece_num integer NOT NULL,
|
|
|
|
root_piece_id bytea,
|
|
|
|
durability_ratio double precision NOT NULL,
|
|
|
|
queued_at timestamp with time zone NOT NULL,
|
|
|
|
requested_at timestamp with time zone,
|
|
|
|
last_failed_at timestamp with time zone,
|
|
|
|
last_failed_code integer,
|
|
|
|
failed_count integer,
|
|
|
|
finished_at timestamp with time zone,
|
|
|
|
order_limit_send_count integer NOT NULL DEFAULT 0,
|
|
|
|
PRIMARY KEY ( node_id, stream_id, position, piece_num )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE nodes (
|
|
|
|
id bytea NOT NULL,
|
2020-04-01 22:58:46 +01:00
|
|
|
address text NOT NULL DEFAULT '',
|
2020-01-03 19:13:57 +00:00
|
|
|
last_net text NOT NULL,
|
2020-03-06 22:04:23 +00:00
|
|
|
last_ip_port text,
|
2021-10-12 22:05:54 +01:00
|
|
|
country_code text,
|
2020-04-01 22:58:46 +01:00
|
|
|
protocol integer NOT NULL DEFAULT 0,
|
|
|
|
type integer NOT NULL DEFAULT 0,
|
2020-01-03 19:13:57 +00:00
|
|
|
email text NOT NULL,
|
|
|
|
wallet text NOT NULL,
|
2021-01-18 14:33:13 +00:00
|
|
|
wallet_features text NOT NULL DEFAULT '',
|
2020-04-01 22:58:46 +01:00
|
|
|
free_disk bigint NOT NULL DEFAULT -1,
|
|
|
|
piece_count bigint NOT NULL DEFAULT 0,
|
|
|
|
major bigint NOT NULL DEFAULT 0,
|
|
|
|
minor bigint NOT NULL DEFAULT 0,
|
|
|
|
patch bigint NOT NULL DEFAULT 0,
|
|
|
|
hash text NOT NULL DEFAULT '',
|
|
|
|
timestamp timestamp with time zone NOT NULL DEFAULT '0001-01-01 00:00:00+00',
|
|
|
|
release boolean NOT NULL DEFAULT false,
|
|
|
|
latency_90 bigint NOT NULL DEFAULT 0,
|
2020-03-18 18:40:56 +00:00
|
|
|
vetted_at timestamp with time zone,
|
2020-04-01 22:58:46 +01:00
|
|
|
created_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
|
|
|
updated_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
|
|
|
last_contact_success timestamp with time zone NOT NULL DEFAULT 'epoch',
|
|
|
|
last_contact_failure timestamp with time zone NOT NULL DEFAULT 'epoch',
|
2020-01-03 19:13:57 +00:00
|
|
|
disqualified timestamp with time zone,
|
2021-10-13 12:33:35 +01:00
|
|
|
disqualification_reason integer,
|
2020-06-09 22:49:12 +01:00
|
|
|
unknown_audit_suspended timestamp with time zone,
|
|
|
|
offline_suspended timestamp with time zone,
|
|
|
|
under_review timestamp with time zone,
|
2020-02-11 15:33:34 +00:00
|
|
|
exit_initiated_at timestamp with time zone,
|
|
|
|
exit_loop_completed_at timestamp with time zone,
|
|
|
|
exit_finished_at timestamp with time zone,
|
2020-04-01 22:58:46 +01:00
|
|
|
exit_success boolean NOT NULL DEFAULT false,
|
2022-11-03 23:26:13 +00:00
|
|
|
contained timestamp with time zone,
|
2022-09-29 20:16:46 +01:00
|
|
|
last_offline_email timestamp with time zone,
|
|
|
|
last_software_update_email timestamp with time zone,
|
2022-12-22 20:28:53 +00:00
|
|
|
noise_proto integer,
|
|
|
|
noise_public_key bytea,
|
2023-02-28 20:38:13 +00:00
|
|
|
debounce_limit integer NOT NULL DEFAULT 0,
|
2023-06-02 15:47:34 +01:00
|
|
|
features integer NOT NULL DEFAULT 0,
|
2020-01-03 19:13:57 +00:00
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|
2020-07-01 16:25:20 +01:00
|
|
|
CREATE TABLE node_api_versions (
|
|
|
|
id bytea NOT NULL,
|
|
|
|
api_version integer NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
updated_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|
2022-10-28 14:33:50 +01:00
|
|
|
CREATE TABLE node_events (
|
2022-10-28 22:23:52 +01:00
|
|
|
id bytea NOT NULL,
|
2022-10-28 14:33:50 +01:00
|
|
|
email text NOT NULL,
|
|
|
|
node_id bytea NOT NULL,
|
|
|
|
event integer NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
2022-11-18 21:21:18 +00:00
|
|
|
last_attempted timestamp with time zone,
|
2022-10-28 14:33:50 +01:00
|
|
|
email_sent timestamp with time zone,
|
2022-10-28 22:23:52 +01:00
|
|
|
PRIMARY KEY ( id )
|
2022-10-28 14:33:50 +01:00
|
|
|
);
|
2023-06-30 11:35:16 +01:00
|
|
|
CREATE TABLE node_tags (
|
|
|
|
node_id bytea NOT NULL,
|
|
|
|
name text NOT NULL,
|
|
|
|
value bytea NOT NULL,
|
|
|
|
signed_at timestamp with time zone NOT NULL,
|
|
|
|
signer bytea NOT NULL,
|
|
|
|
PRIMARY KEY ( node_id, name, signer )
|
|
|
|
);
|
2021-11-22 16:00:33 +00:00
|
|
|
CREATE TABLE oauth_clients (
|
|
|
|
id bytea NOT NULL,
|
|
|
|
encrypted_secret bytea NOT NULL,
|
|
|
|
redirect_url text NOT NULL,
|
|
|
|
user_id bytea NOT NULL,
|
|
|
|
app_name text NOT NULL,
|
|
|
|
app_logo_url text NOT NULL,
|
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|
2021-12-17 16:09:27 +00:00
|
|
|
CREATE TABLE oauth_codes (
|
|
|
|
client_id bytea NOT NULL,
|
|
|
|
user_id bytea NOT NULL,
|
|
|
|
scope text NOT NULL,
|
|
|
|
redirect_url text NOT NULL,
|
|
|
|
challenge text NOT NULL,
|
|
|
|
challenge_method text NOT NULL,
|
|
|
|
code text NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
expires_at timestamp with time zone NOT NULL,
|
|
|
|
claimed_at timestamp with time zone,
|
|
|
|
PRIMARY KEY ( code )
|
|
|
|
);
|
|
|
|
CREATE TABLE oauth_tokens (
|
|
|
|
client_id bytea NOT NULL,
|
|
|
|
user_id bytea NOT NULL,
|
|
|
|
scope text NOT NULL,
|
|
|
|
kind integer NOT NULL,
|
|
|
|
token bytea NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
expires_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( token )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE peer_identities (
|
|
|
|
node_id bytea NOT NULL,
|
|
|
|
leaf_serial_number bytea NOT NULL,
|
|
|
|
chain bytea NOT NULL,
|
|
|
|
updated_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( node_id )
|
|
|
|
);
|
|
|
|
CREATE TABLE projects (
|
|
|
|
id bytea NOT NULL,
|
2022-06-22 15:26:55 +01:00
|
|
|
public_id bytea,
|
2020-01-03 19:13:57 +00:00
|
|
|
name text NOT NULL,
|
|
|
|
description text NOT NULL,
|
2020-10-06 13:50:29 +01:00
|
|
|
usage_limit bigint,
|
|
|
|
bandwidth_limit bigint,
|
2022-10-04 16:39:48 +01:00
|
|
|
user_specified_usage_limit bigint,
|
|
|
|
user_specified_bandwidth_limit bigint,
|
2021-12-01 17:12:55 +00:00
|
|
|
segment_limit bigint DEFAULT 1000000,
|
2020-01-17 15:01:36 +00:00
|
|
|
rate_limit integer,
|
2021-08-23 22:42:46 +01:00
|
|
|
burst_limit integer,
|
2020-10-06 13:50:29 +01:00
|
|
|
max_buckets integer,
|
2021-09-23 00:38:18 +01:00
|
|
|
user_agent bytea,
|
2020-01-03 19:13:57 +00:00
|
|
|
owner_id bytea NOT NULL,
|
2022-07-27 18:24:21 +01:00
|
|
|
salt bytea,
|
2020-01-03 19:13:57 +00:00
|
|
|
created_at timestamp with time zone NOT NULL,
|
2023-06-07 10:02:07 +01:00
|
|
|
default_placement integer,
|
2020-01-03 19:13:57 +00:00
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|
2021-05-14 13:11:25 +01:00
|
|
|
CREATE TABLE project_bandwidth_daily_rollups (
|
|
|
|
project_id bytea NOT NULL,
|
|
|
|
interval_day date NOT NULL,
|
|
|
|
egress_allocated bigint NOT NULL,
|
|
|
|
egress_settled bigint NOT NULL,
|
2021-05-26 22:52:31 +01:00
|
|
|
egress_dead bigint NOT NULL DEFAULT 0,
|
2021-05-14 13:11:25 +01:00
|
|
|
PRIMARY KEY ( project_id, interval_day )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE registration_tokens (
|
|
|
|
secret bytea NOT NULL,
|
|
|
|
owner_id bytea,
|
|
|
|
project_limit integer NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( secret ),
|
|
|
|
UNIQUE ( owner_id )
|
|
|
|
);
|
2021-06-17 16:05:04 +01:00
|
|
|
CREATE TABLE repair_queue (
|
|
|
|
stream_id bytea NOT NULL,
|
|
|
|
position bigint NOT NULL,
|
|
|
|
attempted_at timestamp with time zone,
|
|
|
|
updated_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
|
|
|
inserted_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
|
|
|
segment_health double precision NOT NULL DEFAULT 1,
|
2023-08-31 10:55:02 +01:00
|
|
|
placement integer,
|
2021-06-17 16:05:04 +01:00
|
|
|
PRIMARY KEY ( stream_id, position )
|
|
|
|
);
|
2021-06-22 16:01:15 +01:00
|
|
|
CREATE TABLE reputations (
|
|
|
|
id bytea NOT NULL,
|
|
|
|
audit_success_count bigint NOT NULL DEFAULT 0,
|
|
|
|
total_audit_count bigint NOT NULL DEFAULT 0,
|
|
|
|
vetted_at timestamp with time zone,
|
|
|
|
created_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
|
|
|
updated_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
|
|
|
disqualified timestamp with time zone,
|
2022-04-20 17:59:47 +01:00
|
|
|
disqualification_reason integer,
|
2021-06-22 16:01:15 +01:00
|
|
|
unknown_audit_suspended timestamp with time zone,
|
|
|
|
offline_suspended timestamp with time zone,
|
|
|
|
under_review timestamp with time zone,
|
|
|
|
online_score double precision NOT NULL DEFAULT 1,
|
|
|
|
audit_history bytea NOT NULL,
|
|
|
|
audit_reputation_alpha double precision NOT NULL DEFAULT 1,
|
|
|
|
audit_reputation_beta double precision NOT NULL DEFAULT 0,
|
|
|
|
unknown_audit_reputation_alpha double precision NOT NULL DEFAULT 1,
|
|
|
|
unknown_audit_reputation_beta double precision NOT NULL DEFAULT 0,
|
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE reset_password_tokens (
|
|
|
|
secret bytea NOT NULL,
|
|
|
|
owner_id bytea NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( secret ),
|
|
|
|
UNIQUE ( owner_id )
|
|
|
|
);
|
2022-10-05 14:24:04 +01:00
|
|
|
CREATE TABLE reverification_audits (
|
|
|
|
node_id bytea NOT NULL,
|
|
|
|
stream_id bytea NOT NULL,
|
|
|
|
position bigint NOT NULL,
|
|
|
|
piece_num integer NOT NULL,
|
|
|
|
inserted_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
|
|
|
last_attempt timestamp with time zone,
|
|
|
|
reverify_count bigint NOT NULL DEFAULT 0,
|
|
|
|
PRIMARY KEY ( node_id, stream_id, position )
|
|
|
|
);
|
2020-06-03 14:51:02 +01:00
|
|
|
CREATE TABLE revocations (
|
|
|
|
revoked bytea NOT NULL,
|
|
|
|
api_key_id bytea NOT NULL,
|
|
|
|
PRIMARY KEY ( revoked )
|
|
|
|
);
|
2021-06-11 15:34:46 +01:00
|
|
|
CREATE TABLE segment_pending_audits (
|
|
|
|
node_id bytea NOT NULL,
|
|
|
|
stream_id bytea NOT NULL,
|
|
|
|
position bigint NOT NULL,
|
|
|
|
piece_id bytea NOT NULL,
|
|
|
|
stripe_index bigint NOT NULL,
|
|
|
|
share_size bigint NOT NULL,
|
|
|
|
expected_share_hash bytea NOT NULL,
|
|
|
|
reverify_count bigint NOT NULL,
|
|
|
|
PRIMARY KEY ( node_id )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE storagenode_bandwidth_rollups (
|
|
|
|
storagenode_id bytea NOT NULL,
|
2020-02-11 15:33:34 +00:00
|
|
|
interval_start timestamp with time zone NOT NULL,
|
2020-01-03 19:13:57 +00:00
|
|
|
interval_seconds integer NOT NULL,
|
|
|
|
action integer NOT NULL,
|
2020-01-15 07:25:26 +00:00
|
|
|
allocated bigint DEFAULT 0,
|
2020-01-03 19:13:57 +00:00
|
|
|
settled bigint NOT NULL,
|
|
|
|
PRIMARY KEY ( storagenode_id, interval_start, action )
|
|
|
|
);
|
2020-11-30 19:34:42 +00:00
|
|
|
CREATE TABLE storagenode_bandwidth_rollup_archives (
|
|
|
|
storagenode_id bytea NOT NULL,
|
|
|
|
interval_start timestamp with time zone NOT NULL,
|
|
|
|
interval_seconds integer NOT NULL,
|
|
|
|
action integer NOT NULL,
|
|
|
|
allocated bigint DEFAULT 0,
|
|
|
|
settled bigint NOT NULL,
|
|
|
|
PRIMARY KEY ( storagenode_id, interval_start, action )
|
|
|
|
);
|
2020-11-12 19:01:55 +00:00
|
|
|
CREATE TABLE storagenode_bandwidth_rollups_phase2 (
|
|
|
|
storagenode_id bytea NOT NULL,
|
|
|
|
interval_start timestamp with time zone NOT NULL,
|
|
|
|
interval_seconds integer NOT NULL,
|
|
|
|
action integer NOT NULL,
|
|
|
|
allocated bigint DEFAULT 0,
|
|
|
|
settled bigint NOT NULL,
|
|
|
|
PRIMARY KEY ( storagenode_id, interval_start, action )
|
|
|
|
);
|
2020-02-18 19:52:18 +00:00
|
|
|
CREATE TABLE storagenode_payments (
|
|
|
|
id bigserial NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
node_id bytea NOT NULL,
|
2020-04-01 22:58:46 +01:00
|
|
|
period text NOT NULL,
|
2020-02-18 19:52:18 +00:00
|
|
|
amount bigint NOT NULL,
|
|
|
|
receipt text,
|
|
|
|
notes text,
|
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|
|
|
|
CREATE TABLE storagenode_paystubs (
|
|
|
|
period text NOT NULL,
|
|
|
|
node_id bytea NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
codes text NOT NULL,
|
|
|
|
usage_at_rest double precision NOT NULL,
|
|
|
|
usage_get bigint NOT NULL,
|
|
|
|
usage_put bigint NOT NULL,
|
|
|
|
usage_get_repair bigint NOT NULL,
|
|
|
|
usage_put_repair bigint NOT NULL,
|
|
|
|
usage_get_audit bigint NOT NULL,
|
|
|
|
comp_at_rest bigint NOT NULL,
|
|
|
|
comp_get bigint NOT NULL,
|
|
|
|
comp_put bigint NOT NULL,
|
|
|
|
comp_get_repair bigint NOT NULL,
|
|
|
|
comp_put_repair bigint NOT NULL,
|
|
|
|
comp_get_audit bigint NOT NULL,
|
|
|
|
surge_percent bigint NOT NULL,
|
|
|
|
held bigint NOT NULL,
|
|
|
|
owed bigint NOT NULL,
|
|
|
|
disposed bigint NOT NULL,
|
|
|
|
paid bigint NOT NULL,
|
2021-01-19 23:30:50 +00:00
|
|
|
distributed bigint NOT NULL,
|
2020-02-18 19:52:18 +00:00
|
|
|
PRIMARY KEY ( period, node_id )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE storagenode_storage_tallies (
|
|
|
|
node_id bytea NOT NULL,
|
|
|
|
interval_end_time timestamp with time zone NOT NULL,
|
|
|
|
data_total double precision NOT NULL,
|
2020-03-18 20:00:13 +00:00
|
|
|
PRIMARY KEY ( interval_end_time, node_id )
|
2020-01-03 19:13:57 +00:00
|
|
|
);
|
2022-05-10 13:18:23 +01:00
|
|
|
CREATE TABLE storjscan_payments (
|
|
|
|
block_hash bytea NOT NULL,
|
|
|
|
block_number bigint NOT NULL,
|
|
|
|
transaction bytea NOT NULL,
|
|
|
|
log_index integer NOT NULL,
|
|
|
|
from_address bytea NOT NULL,
|
|
|
|
to_address bytea NOT NULL,
|
|
|
|
token_value bigint NOT NULL,
|
|
|
|
usd_value bigint NOT NULL,
|
|
|
|
status text NOT NULL,
|
|
|
|
timestamp timestamp with time zone NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( block_hash, log_index )
|
|
|
|
);
|
2022-05-20 10:18:59 +01:00
|
|
|
CREATE TABLE storjscan_wallets (
|
|
|
|
user_id bytea NOT NULL,
|
|
|
|
wallet_address bytea NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( user_id, wallet_address )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE stripe_customers (
|
|
|
|
user_id bytea NOT NULL,
|
|
|
|
customer_id text NOT NULL,
|
2023-03-22 20:23:44 +00:00
|
|
|
package_plan text,
|
|
|
|
purchased_package_at timestamp with time zone,
|
2020-01-03 19:13:57 +00:00
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( user_id ),
|
|
|
|
UNIQUE ( customer_id )
|
|
|
|
);
|
|
|
|
CREATE TABLE stripecoinpayments_invoice_project_records (
|
|
|
|
id bytea NOT NULL,
|
|
|
|
project_id bytea NOT NULL,
|
|
|
|
storage double precision NOT NULL,
|
|
|
|
egress bigint NOT NULL,
|
2021-10-20 23:43:32 +01:00
|
|
|
objects bigint,
|
|
|
|
segments bigint,
|
2020-01-03 19:13:57 +00:00
|
|
|
period_start timestamp with time zone NOT NULL,
|
|
|
|
period_end timestamp with time zone NOT NULL,
|
|
|
|
state integer NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( id ),
|
|
|
|
UNIQUE ( project_id, period_start, period_end )
|
|
|
|
);
|
|
|
|
CREATE TABLE stripecoinpayments_tx_conversion_rates (
|
|
|
|
tx_id text NOT NULL,
|
2022-03-24 16:19:47 +00:00
|
|
|
rate_numeric double precision NOT NULL,
|
2020-01-03 19:13:57 +00:00
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( tx_id )
|
|
|
|
);
|
|
|
|
CREATE TABLE users (
|
|
|
|
id bytea NOT NULL,
|
|
|
|
email text NOT NULL,
|
|
|
|
normalized_email text NOT NULL,
|
|
|
|
full_name text NOT NULL,
|
|
|
|
short_name text,
|
|
|
|
password_hash bytea NOT NULL,
|
|
|
|
status integer NOT NULL,
|
2021-09-23 00:38:18 +01:00
|
|
|
user_agent bytea,
|
2020-01-03 19:13:57 +00:00
|
|
|
created_at timestamp with time zone NOT NULL,
|
2020-07-15 16:14:09 +01:00
|
|
|
project_limit integer NOT NULL DEFAULT 0,
|
2021-11-01 15:27:32 +00:00
|
|
|
project_bandwidth_limit bigint NOT NULL DEFAULT 0,
|
|
|
|
project_storage_limit bigint NOT NULL DEFAULT 0,
|
2021-12-06 19:06:50 +00:00
|
|
|
project_segment_limit bigint NOT NULL DEFAULT 0,
|
2021-06-29 22:41:44 +01:00
|
|
|
paid_tier boolean NOT NULL DEFAULT false,
|
2021-01-26 16:38:53 +00:00
|
|
|
position text,
|
|
|
|
company_name text,
|
|
|
|
company_size integer,
|
|
|
|
working_on text,
|
|
|
|
is_professional boolean NOT NULL DEFAULT false,
|
2021-02-10 15:55:38 +00:00
|
|
|
employee_count text,
|
2021-04-22 19:28:23 +01:00
|
|
|
have_sales_contact boolean NOT NULL DEFAULT false,
|
2021-07-08 17:26:35 +01:00
|
|
|
mfa_enabled boolean NOT NULL DEFAULT false,
|
|
|
|
mfa_secret_key text,
|
|
|
|
mfa_recovery_codes text,
|
2021-10-12 14:54:05 +01:00
|
|
|
signup_promo_code text,
|
2022-02-08 14:32:16 +00:00
|
|
|
verification_reminders integer NOT NULL DEFAULT 0,
|
2022-02-18 14:53:53 +00:00
|
|
|
failed_login_count integer,
|
|
|
|
login_lockout_expiration timestamp with time zone,
|
2022-08-17 11:27:48 +01:00
|
|
|
signup_captcha double precision,
|
2023-06-07 10:02:07 +01:00
|
|
|
default_placement integer,
|
2020-01-03 19:13:57 +00:00
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|
2023-02-03 10:30:22 +00:00
|
|
|
CREATE TABLE user_settings (
|
|
|
|
user_id bytea NOT NULL,
|
|
|
|
session_minutes integer,
|
2023-03-01 21:53:07 +00:00
|
|
|
passphrase_prompt boolean,
|
2023-03-15 15:46:59 +00:00
|
|
|
onboarding_start boolean NOT NULL DEFAULT true,
|
|
|
|
onboarding_end boolean NOT NULL DEFAULT true,
|
|
|
|
onboarding_step text,
|
2023-02-03 10:30:22 +00:00
|
|
|
PRIMARY KEY ( user_id )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE value_attributions (
|
|
|
|
project_id bytea NOT NULL,
|
|
|
|
bucket_name bytea NOT NULL,
|
2021-09-23 00:38:18 +01:00
|
|
|
user_agent bytea,
|
2023-05-31 22:02:30 +01:00
|
|
|
partner_id bytea DEFAULT null,
|
2020-02-11 15:33:34 +00:00
|
|
|
last_updated timestamp with time zone NOT NULL,
|
2020-01-03 19:13:57 +00:00
|
|
|
PRIMARY KEY ( project_id, bucket_name )
|
|
|
|
);
|
2022-11-01 17:45:41 +00:00
|
|
|
CREATE TABLE verification_audits (
|
|
|
|
inserted_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
|
|
|
|
stream_id bytea NOT NULL,
|
|
|
|
position bigint NOT NULL,
|
|
|
|
expires_at timestamp with time zone,
|
|
|
|
encrypted_size integer NOT NULL,
|
|
|
|
PRIMARY KEY ( inserted_at, stream_id, position )
|
|
|
|
);
|
2022-04-15 14:27:49 +01:00
|
|
|
CREATE TABLE webapp_sessions (
|
|
|
|
id bytea NOT NULL,
|
|
|
|
user_id bytea NOT NULL,
|
|
|
|
ip_address text NOT NULL,
|
|
|
|
user_agent text NOT NULL,
|
|
|
|
status integer NOT NULL,
|
|
|
|
expires_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( id )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE api_keys (
|
|
|
|
id bytea NOT NULL,
|
|
|
|
project_id bytea NOT NULL REFERENCES projects( id ) ON DELETE CASCADE,
|
|
|
|
head bytea NOT NULL,
|
|
|
|
name text NOT NULL,
|
|
|
|
secret bytea NOT NULL,
|
2021-09-23 00:38:18 +01:00
|
|
|
user_agent bytea,
|
2020-01-03 19:13:57 +00:00
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( id ),
|
|
|
|
UNIQUE ( head ),
|
|
|
|
UNIQUE ( name, project_id )
|
|
|
|
);
|
|
|
|
CREATE TABLE bucket_metainfos (
|
|
|
|
id bytea NOT NULL,
|
|
|
|
project_id bytea NOT NULL REFERENCES projects( id ),
|
|
|
|
name bytea NOT NULL,
|
2021-09-23 00:38:18 +01:00
|
|
|
user_agent bytea,
|
2020-01-03 19:13:57 +00:00
|
|
|
path_cipher integer NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
default_segment_size integer NOT NULL,
|
|
|
|
default_encryption_cipher_suite integer NOT NULL,
|
|
|
|
default_encryption_block_size integer NOT NULL,
|
|
|
|
default_redundancy_algorithm integer NOT NULL,
|
|
|
|
default_redundancy_share_size integer NOT NULL,
|
|
|
|
default_redundancy_required_shares integer NOT NULL,
|
|
|
|
default_redundancy_repair_shares integer NOT NULL,
|
|
|
|
default_redundancy_optimal_shares integer NOT NULL,
|
|
|
|
default_redundancy_total_shares integer NOT NULL,
|
2021-10-12 22:05:54 +01:00
|
|
|
placement integer,
|
2023-10-02 13:17:51 +01:00
|
|
|
PRIMARY KEY ( project_id, name )
|
2020-01-03 19:13:57 +00:00
|
|
|
);
|
2023-04-24 16:28:51 +01:00
|
|
|
CREATE TABLE project_invitations (
|
|
|
|
project_id bytea NOT NULL REFERENCES projects( id ) ON DELETE CASCADE,
|
|
|
|
email text NOT NULL,
|
2023-05-09 20:18:07 +01:00
|
|
|
inviter_id bytea REFERENCES users( id ) ON DELETE SET NULL,
|
2023-04-24 16:28:51 +01:00
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( project_id, email )
|
|
|
|
);
|
2020-01-03 19:13:57 +00:00
|
|
|
CREATE TABLE project_members (
|
|
|
|
member_id bytea NOT NULL REFERENCES users( id ) ON DELETE CASCADE,
|
|
|
|
project_id bytea NOT NULL REFERENCES projects( id ) ON DELETE CASCADE,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( member_id, project_id )
|
|
|
|
);
|
|
|
|
CREATE TABLE stripecoinpayments_apply_balance_intents (
|
|
|
|
tx_id text NOT NULL REFERENCES coinpayments_transactions( id ) ON DELETE CASCADE,
|
|
|
|
state integer NOT NULL,
|
|
|
|
created_at timestamp with time zone NOT NULL,
|
|
|
|
PRIMARY KEY ( tx_id )
|
|
|
|
);
|
2021-04-22 19:28:23 +01:00
|
|
|
CREATE INDEX accounting_rollups_start_time_index ON accounting_rollups ( start_time ) ;
|
2022-08-16 17:44:19 +01:00
|
|
|
CREATE INDEX billing_transactions_timestamp_index ON billing_transactions ( timestamp ) ;
|
2021-04-22 19:28:23 +01:00
|
|
|
CREATE INDEX bucket_bandwidth_rollups_project_id_action_interval_index ON bucket_bandwidth_rollups ( project_id, action, interval_start ) ;
|
|
|
|
CREATE INDEX bucket_bandwidth_rollups_action_interval_project_id_index ON bucket_bandwidth_rollups ( action, interval_start, project_id ) ;
|
|
|
|
CREATE INDEX bucket_bandwidth_rollups_archive_project_id_action_interval_index ON bucket_bandwidth_rollup_archives ( project_id, action, interval_start ) ;
|
|
|
|
CREATE INDEX bucket_bandwidth_rollups_archive_action_interval_project_id_index ON bucket_bandwidth_rollup_archives ( action, interval_start, project_id ) ;
|
|
|
|
CREATE INDEX bucket_storage_tallies_project_id_interval_start_index ON bucket_storage_tallies ( project_id, interval_start ) ;
|
2021-06-11 14:32:07 +01:00
|
|
|
CREATE INDEX graceful_exit_segment_transfer_nid_dr_qa_fa_lfa_index ON graceful_exit_segment_transfer_queue ( node_id, durability_ratio, queued_at, finished_at, last_failed_at ) ;
|
2021-04-22 19:28:23 +01:00
|
|
|
CREATE INDEX node_last_ip ON nodes ( last_net ) ;
|
|
|
|
CREATE INDEX nodes_dis_unk_off_exit_fin_last_success_index ON nodes ( disqualified, unknown_audit_suspended, offline_suspended, exit_finished_at, last_contact_success ) ;
|
2021-04-28 14:22:54 +01:00
|
|
|
CREATE INDEX nodes_type_last_cont_success_free_disk_ma_mi_patch_vetted_partial_index ON nodes ( type, last_contact_success, free_disk, major, minor, patch, vetted_at ) WHERE nodes.disqualified is NULL AND nodes.unknown_audit_suspended is NULL AND nodes.exit_initiated_at is NULL AND nodes.release = true AND nodes.last_net != '' ;
|
|
|
|
CREATE INDEX nodes_dis_unk_aud_exit_init_rel_type_last_cont_success_stored_index ON nodes ( disqualified, unknown_audit_suspended, exit_initiated_at, release, type, last_contact_success ) WHERE nodes.disqualified is NULL AND nodes.unknown_audit_suspended is NULL AND nodes.exit_initiated_at is NULL AND nodes.release = true ;
|
2022-10-28 14:33:50 +01:00
|
|
|
CREATE INDEX node_events_email_event_created_at_index ON node_events ( email, event, created_at ) WHERE node_events.email_sent is NULL ;
|
2021-11-22 16:00:33 +00:00
|
|
|
CREATE INDEX oauth_clients_user_id_index ON oauth_clients ( user_id ) ;
|
2021-12-17 16:09:27 +00:00
|
|
|
CREATE INDEX oauth_codes_user_id_index ON oauth_codes ( user_id ) ;
|
|
|
|
CREATE INDEX oauth_codes_client_id_index ON oauth_codes ( client_id ) ;
|
|
|
|
CREATE INDEX oauth_tokens_user_id_index ON oauth_tokens ( user_id ) ;
|
|
|
|
CREATE INDEX oauth_tokens_client_id_index ON oauth_tokens ( client_id ) ;
|
2022-06-22 15:26:55 +01:00
|
|
|
CREATE INDEX projects_public_id_index ON projects ( public_id ) ;
|
2023-05-08 13:56:39 +01:00
|
|
|
CREATE INDEX projects_owner_id_index ON projects ( owner_id ) ;
|
2023-02-02 21:05:41 +00:00
|
|
|
CREATE INDEX project_bandwidth_daily_rollup_interval_day_index ON project_bandwidth_daily_rollups ( interval_day ) ;
|
2021-06-17 16:05:04 +01:00
|
|
|
CREATE INDEX repair_queue_updated_at_index ON repair_queue ( updated_at ) ;
|
|
|
|
CREATE INDEX repair_queue_num_healthy_pieces_attempted_at_index ON repair_queue ( segment_health, attempted_at ) ;
|
2023-08-31 10:55:02 +01:00
|
|
|
CREATE INDEX repair_queue_placement_index ON repair_queue ( placement ) ;
|
2022-10-05 14:24:04 +01:00
|
|
|
CREATE INDEX reverification_audits_inserted_at_index ON reverification_audits ( inserted_at ) ;
|
2021-04-22 19:28:23 +01:00
|
|
|
CREATE INDEX storagenode_bandwidth_rollups_interval_start_index ON storagenode_bandwidth_rollups ( interval_start ) ;
|
|
|
|
CREATE INDEX storagenode_bandwidth_rollup_archives_interval_start_index ON storagenode_bandwidth_rollup_archives ( interval_start ) ;
|
|
|
|
CREATE INDEX storagenode_payments_node_id_period_index ON storagenode_payments ( node_id, period ) ;
|
|
|
|
CREATE INDEX storagenode_paystubs_node_id_index ON storagenode_paystubs ( node_id ) ;
|
|
|
|
CREATE INDEX storagenode_storage_tallies_node_id_index ON storagenode_storage_tallies ( node_id ) ;
|
2022-05-10 13:18:23 +01:00
|
|
|
CREATE INDEX storjscan_payments_block_number_log_index_index ON storjscan_payments ( block_number, log_index ) ;
|
2022-08-12 21:44:35 +01:00
|
|
|
CREATE INDEX storjscan_wallets_wallet_address_index ON storjscan_wallets ( wallet_address ) ;
|
2023-03-16 13:08:49 +00:00
|
|
|
CREATE INDEX users_email_status_index ON users ( normalized_email, status ) ;
|
2022-04-15 14:27:49 +01:00
|
|
|
CREATE INDEX webapp_sessions_user_id_index ON webapp_sessions ( user_id ) ;
|
2023-04-24 16:28:51 +01:00
|
|
|
CREATE INDEX project_invitations_project_id_index ON project_invitations ( project_id ) ;
|
|
|
|
CREATE INDEX project_invitations_email_index ON project_invitations ( email ) ;
|
2023-06-11 22:27:36 +01:00
|
|
|
CREATE INDEX project_members_project_id_index ON project_members ( project_id ) ;
|