You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
inserted_at timestamp with time zone NOT NULL DEFAULT current_timestamp,
539
+
stream_id bytea NOT NULL,
540
+
position bigint NOT NULL,
541
+
expires_at timestamp with time zone,
542
+
encrypted_size integer NOT NULL,
543
+
PRIMARY KEY ( inserted_at, stream_id, position )
544
+
);
538
545
CREATE TABLE webapp_sessions (
539
546
id bytea NOT NULL,
540
547
user_id bytea NOT NULL,
@@ -615,7 +622,7 @@ CREATE INDEX node_last_ip ON nodes ( last_net ) ;
615
622
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 ) ;
616
623
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 != '' ;
617
624
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 ;
618
-
CREATE INDEX node_events_email_event_created_at_index ON node_events ( email, event, created_at ) WHERE node_events.email_sent IS NULL ;
625
+
CREATE INDEX node_events_email_event_created_at_index ON node_events ( email, event, created_at ) WHERE node_events.email_sent is NULL ;
619
626
CREATE INDEX oauth_clients_user_id_index ON oauth_clients ( user_id ) ;
620
627
CREATE INDEX oauth_codes_user_id_index ON oauth_codes ( user_id ) ;
621
628
CREATE INDEX oauth_codes_client_id_index ON oauth_codes ( client_id ) ;
0 commit comments