Files
gitea-docker/backups/gitea-db-backup-2025-05-23_03-21-26.sql
2025-06-20 19:38:38 -06:00

10424 lines
819 KiB
SQL
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
failed to get console mode for stdout: The handle is invalid.
--
-- PostgreSQL database dump
--
-- Dumped from database version 14.16 (Debian 14.16-1.pgdg120+1)
-- Dumped by pg_dump version 14.16 (Debian 14.16-1.pgdg120+1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: access; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.access (
id bigint NOT NULL,
user_id bigint,
repo_id bigint,
mode integer
);
ALTER TABLE public.access OWNER TO gitea;
--
-- Name: access_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.access_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.access_id_seq OWNER TO gitea;
--
-- Name: access_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.access_id_seq OWNED BY public.access.id;
--
-- Name: access_token; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.access_token (
id bigint NOT NULL,
uid bigint,
name character varying(255),
token_hash character varying(255),
token_salt character varying(255),
token_last_eight character varying(255),
scope character varying(255),
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.access_token OWNER TO gitea;
--
-- Name: access_token_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.access_token_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.access_token_id_seq OWNER TO gitea;
--
-- Name: access_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.access_token_id_seq OWNED BY public.access_token.id;
--
-- Name: action; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action (
id bigint NOT NULL,
user_id bigint,
op_type integer,
act_user_id bigint,
repo_id bigint,
comment_id bigint,
is_deleted boolean DEFAULT false NOT NULL,
ref_name character varying(255),
is_private boolean DEFAULT false NOT NULL,
content text,
created_unix bigint
);
ALTER TABLE public.action OWNER TO gitea;
--
-- Name: action_artifact; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_artifact (
id bigint NOT NULL,
run_id bigint,
runner_id bigint,
repo_id bigint,
owner_id bigint,
commit_sha character varying(255),
storage_path character varying(255),
file_size bigint,
file_compressed_size bigint,
content_encoding character varying(255),
artifact_path character varying(255),
artifact_name character varying(255),
status bigint,
created_unix bigint,
updated_unix bigint,
expired_unix bigint
);
ALTER TABLE public.action_artifact OWNER TO gitea;
--
-- Name: action_artifact_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_artifact_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_artifact_id_seq OWNER TO gitea;
--
-- Name: action_artifact_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_artifact_id_seq OWNED BY public.action_artifact.id;
--
-- Name: action_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_id_seq OWNER TO gitea;
--
-- Name: action_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_id_seq OWNED BY public.action.id;
--
-- Name: action_run; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_run (
id bigint NOT NULL,
title character varying(255),
repo_id bigint,
owner_id bigint,
workflow_id character varying(255),
index bigint,
trigger_user_id bigint,
schedule_id bigint,
ref character varying(255),
commit_sha character varying(255),
is_fork_pull_request boolean,
need_approval boolean,
approved_by bigint,
event character varying(255),
event_payload text,
trigger_event character varying(255),
status integer,
version integer DEFAULT 0,
started bigint,
stopped bigint,
created bigint,
updated bigint,
previous_duration bigint
);
ALTER TABLE public.action_run OWNER TO gitea;
--
-- Name: action_run_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_run_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_run_id_seq OWNER TO gitea;
--
-- Name: action_run_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_run_id_seq OWNED BY public.action_run.id;
--
-- Name: action_run_index; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_run_index (
group_id bigint NOT NULL,
max_index bigint
);
ALTER TABLE public.action_run_index OWNER TO gitea;
--
-- Name: action_run_job; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_run_job (
id bigint NOT NULL,
run_id bigint,
repo_id bigint,
owner_id bigint,
commit_sha character varying(255),
is_fork_pull_request boolean,
name character varying(255),
attempt bigint,
workflow_payload bytea,
job_id character varying(255),
needs text,
runs_on text,
task_id bigint,
status integer,
started bigint,
stopped bigint,
created bigint,
updated bigint
);
ALTER TABLE public.action_run_job OWNER TO gitea;
--
-- Name: action_run_job_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_run_job_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_run_job_id_seq OWNER TO gitea;
--
-- Name: action_run_job_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_run_job_id_seq OWNED BY public.action_run_job.id;
--
-- Name: action_runner; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_runner (
id bigint NOT NULL,
uuid character(36),
name character varying(255),
version character varying(64),
owner_id bigint,
repo_id bigint,
description text,
base integer,
repo_range character varying(255),
token_hash character varying(255),
token_salt character varying(255),
last_online bigint,
last_active bigint,
agent_labels text,
created bigint,
updated bigint,
deleted bigint
);
ALTER TABLE public.action_runner OWNER TO gitea;
--
-- Name: action_runner_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_runner_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_runner_id_seq OWNER TO gitea;
--
-- Name: action_runner_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_runner_id_seq OWNED BY public.action_runner.id;
--
-- Name: action_runner_token; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_runner_token (
id bigint NOT NULL,
token character varying(255),
owner_id bigint,
repo_id bigint,
is_active boolean,
created bigint,
updated bigint,
deleted bigint
);
ALTER TABLE public.action_runner_token OWNER TO gitea;
--
-- Name: action_runner_token_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_runner_token_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_runner_token_id_seq OWNER TO gitea;
--
-- Name: action_runner_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_runner_token_id_seq OWNED BY public.action_runner_token.id;
--
-- Name: action_schedule; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_schedule (
id bigint NOT NULL,
title character varying(255),
specs text,
repo_id bigint,
owner_id bigint,
workflow_id character varying(255),
trigger_user_id bigint,
ref character varying(255),
commit_sha character varying(255),
event character varying(255),
event_payload text,
content bytea,
created bigint,
updated bigint
);
ALTER TABLE public.action_schedule OWNER TO gitea;
--
-- Name: action_schedule_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_schedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_schedule_id_seq OWNER TO gitea;
--
-- Name: action_schedule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_schedule_id_seq OWNED BY public.action_schedule.id;
--
-- Name: action_schedule_spec; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_schedule_spec (
id bigint NOT NULL,
repo_id bigint,
schedule_id bigint,
next bigint,
prev bigint,
spec character varying(255),
created bigint,
updated bigint
);
ALTER TABLE public.action_schedule_spec OWNER TO gitea;
--
-- Name: action_schedule_spec_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_schedule_spec_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_schedule_spec_id_seq OWNER TO gitea;
--
-- Name: action_schedule_spec_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_schedule_spec_id_seq OWNED BY public.action_schedule_spec.id;
--
-- Name: action_task; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_task (
id bigint NOT NULL,
job_id bigint,
attempt bigint,
runner_id bigint,
status integer,
started bigint,
stopped bigint,
repo_id bigint,
owner_id bigint,
commit_sha character varying(255),
is_fork_pull_request boolean,
token_hash character varying(255),
token_salt character varying(255),
token_last_eight character varying(255),
log_filename character varying(255),
log_in_storage boolean,
log_length bigint,
log_size bigint,
log_indexes bytea,
log_expired boolean,
created bigint,
updated bigint
);
ALTER TABLE public.action_task OWNER TO gitea;
--
-- Name: action_task_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_task_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_task_id_seq OWNER TO gitea;
--
-- Name: action_task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_task_id_seq OWNED BY public.action_task.id;
--
-- Name: action_task_output; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_task_output (
id bigint NOT NULL,
task_id bigint,
output_key character varying(255),
output_value text
);
ALTER TABLE public.action_task_output OWNER TO gitea;
--
-- Name: action_task_output_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_task_output_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_task_output_id_seq OWNER TO gitea;
--
-- Name: action_task_output_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_task_output_id_seq OWNED BY public.action_task_output.id;
--
-- Name: action_task_step; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_task_step (
id bigint NOT NULL,
name character varying(255),
task_id bigint,
index bigint,
repo_id bigint,
status integer,
log_index bigint,
log_length bigint,
started bigint,
stopped bigint,
created bigint,
updated bigint
);
ALTER TABLE public.action_task_step OWNER TO gitea;
--
-- Name: action_task_step_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_task_step_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_task_step_id_seq OWNER TO gitea;
--
-- Name: action_task_step_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_task_step_id_seq OWNED BY public.action_task_step.id;
--
-- Name: action_tasks_version; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_tasks_version (
id bigint NOT NULL,
owner_id bigint,
repo_id bigint,
version bigint,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.action_tasks_version OWNER TO gitea;
--
-- Name: action_tasks_version_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_tasks_version_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_tasks_version_id_seq OWNER TO gitea;
--
-- Name: action_tasks_version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_tasks_version_id_seq OWNED BY public.action_tasks_version.id;
--
-- Name: action_variable; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.action_variable (
id bigint NOT NULL,
owner_id bigint,
repo_id bigint,
name character varying(255) NOT NULL,
data text NOT NULL,
created_unix bigint NOT NULL,
updated_unix bigint
);
ALTER TABLE public.action_variable OWNER TO gitea;
--
-- Name: action_variable_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.action_variable_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.action_variable_id_seq OWNER TO gitea;
--
-- Name: action_variable_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.action_variable_id_seq OWNED BY public.action_variable.id;
--
-- Name: app_state; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.app_state (
id character varying(200) NOT NULL,
revision bigint,
content text
);
ALTER TABLE public.app_state OWNER TO gitea;
--
-- Name: attachment; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.attachment (
id bigint NOT NULL,
uuid uuid,
repo_id bigint,
issue_id bigint,
release_id bigint,
uploader_id bigint DEFAULT 0,
comment_id bigint,
name character varying(255),
download_count bigint DEFAULT 0,
size bigint DEFAULT 0,
created_unix bigint
);
ALTER TABLE public.attachment OWNER TO gitea;
--
-- Name: attachment_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.attachment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.attachment_id_seq OWNER TO gitea;
--
-- Name: attachment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.attachment_id_seq OWNED BY public.attachment.id;
--
-- Name: auth_token; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.auth_token (
id character varying(255) NOT NULL,
token_hash character varying(255),
user_id bigint,
expires_unix bigint
);
ALTER TABLE public.auth_token OWNER TO gitea;
--
-- Name: badge; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.badge (
id bigint NOT NULL,
description character varying(255),
image_url character varying(255),
slug character varying(255)
);
ALTER TABLE public.badge OWNER TO gitea;
--
-- Name: badge_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.badge_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.badge_id_seq OWNER TO gitea;
--
-- Name: badge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.badge_id_seq OWNED BY public.badge.id;
--
-- Name: branch; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.branch (
id bigint NOT NULL,
repo_id bigint,
name character varying(255) NOT NULL,
commit_id character varying(255),
commit_message text,
pusher_id bigint,
is_deleted boolean,
deleted_by_id bigint,
deleted_unix bigint,
commit_time bigint,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.branch OWNER TO gitea;
--
-- Name: branch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.branch_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.branch_id_seq OWNER TO gitea;
--
-- Name: branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.branch_id_seq OWNED BY public.branch.id;
--
-- Name: collaboration; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.collaboration (
id bigint NOT NULL,
repo_id bigint NOT NULL,
user_id bigint NOT NULL,
mode integer DEFAULT 2 NOT NULL,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.collaboration OWNER TO gitea;
--
-- Name: collaboration_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.collaboration_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.collaboration_id_seq OWNER TO gitea;
--
-- Name: collaboration_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.collaboration_id_seq OWNED BY public.collaboration.id;
--
-- Name: comment; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.comment (
id bigint NOT NULL,
type integer,
poster_id bigint,
original_author character varying(255),
original_author_id bigint,
issue_id bigint,
label_id bigint,
old_project_id bigint,
project_id bigint,
old_milestone_id bigint,
milestone_id bigint,
time_id bigint,
assignee_id bigint,
removed_assignee boolean,
assignee_team_id bigint DEFAULT 0 NOT NULL,
resolve_doer_id bigint,
old_title character varying(255),
new_title character varying(255),
old_ref character varying(255),
new_ref character varying(255),
dependent_issue_id bigint,
commit_id bigint,
line bigint,
tree_path character varying(255),
content text,
patch text,
created_unix bigint,
updated_unix bigint,
commit_sha character varying(64),
review_id bigint,
invalidated boolean,
ref_repo_id bigint,
ref_issue_id bigint,
ref_comment_id bigint,
ref_action smallint,
ref_is_pull boolean,
content_version integer DEFAULT 0 NOT NULL,
comment_meta_data text
);
ALTER TABLE public.comment OWNER TO gitea;
--
-- Name: comment_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.comment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.comment_id_seq OWNER TO gitea;
--
-- Name: comment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.comment_id_seq OWNED BY public.comment.id;
--
-- Name: commit_status; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.commit_status (
id bigint NOT NULL,
index bigint,
repo_id bigint,
state character varying(7) NOT NULL,
sha character varying(64) NOT NULL,
target_url text,
description text,
context_hash character varying(64),
context text,
creator_id bigint,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.commit_status OWNER TO gitea;
--
-- Name: commit_status_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.commit_status_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.commit_status_id_seq OWNER TO gitea;
--
-- Name: commit_status_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.commit_status_id_seq OWNED BY public.commit_status.id;
--
-- Name: commit_status_index; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.commit_status_index (
id bigint NOT NULL,
repo_id bigint,
sha character varying(255),
max_index bigint
);
ALTER TABLE public.commit_status_index OWNER TO gitea;
--
-- Name: commit_status_index_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.commit_status_index_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.commit_status_index_id_seq OWNER TO gitea;
--
-- Name: commit_status_index_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.commit_status_index_id_seq OWNED BY public.commit_status_index.id;
--
-- Name: commit_status_summary; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.commit_status_summary (
id bigint NOT NULL,
repo_id bigint,
sha character varying(64) NOT NULL,
state character varying(7) NOT NULL,
target_url text
);
ALTER TABLE public.commit_status_summary OWNER TO gitea;
--
-- Name: commit_status_summary_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.commit_status_summary_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.commit_status_summary_id_seq OWNER TO gitea;
--
-- Name: commit_status_summary_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.commit_status_summary_id_seq OWNED BY public.commit_status_summary.id;
--
-- Name: dbfs_data; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.dbfs_data (
id bigint NOT NULL,
revision bigint NOT NULL,
meta_id bigint NOT NULL,
blob_offset bigint NOT NULL,
blob_size bigint NOT NULL,
blob_data bytea NOT NULL
);
ALTER TABLE public.dbfs_data OWNER TO gitea;
--
-- Name: dbfs_data_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.dbfs_data_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dbfs_data_id_seq OWNER TO gitea;
--
-- Name: dbfs_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.dbfs_data_id_seq OWNED BY public.dbfs_data.id;
--
-- Name: dbfs_meta; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.dbfs_meta (
id bigint NOT NULL,
full_path character varying(500) NOT NULL,
block_size bigint NOT NULL,
file_size bigint NOT NULL,
create_timestamp bigint NOT NULL,
modify_timestamp bigint NOT NULL
);
ALTER TABLE public.dbfs_meta OWNER TO gitea;
--
-- Name: dbfs_meta_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.dbfs_meta_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.dbfs_meta_id_seq OWNER TO gitea;
--
-- Name: dbfs_meta_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.dbfs_meta_id_seq OWNED BY public.dbfs_meta.id;
--
-- Name: deploy_key; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.deploy_key (
id bigint NOT NULL,
key_id bigint,
repo_id bigint,
name character varying(255),
fingerprint character varying(255),
mode integer DEFAULT 1 NOT NULL,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.deploy_key OWNER TO gitea;
--
-- Name: deploy_key_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.deploy_key_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.deploy_key_id_seq OWNER TO gitea;
--
-- Name: deploy_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.deploy_key_id_seq OWNED BY public.deploy_key.id;
--
-- Name: email_address; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.email_address (
id bigint NOT NULL,
uid bigint NOT NULL,
email character varying(255) NOT NULL,
lower_email character varying(255) NOT NULL,
is_activated boolean,
is_primary boolean DEFAULT false NOT NULL
);
ALTER TABLE public.email_address OWNER TO gitea;
--
-- Name: email_address_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.email_address_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.email_address_id_seq OWNER TO gitea;
--
-- Name: email_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.email_address_id_seq OWNED BY public.email_address.id;
--
-- Name: email_hash; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.email_hash (
hash character varying(32) NOT NULL,
email character varying(255) NOT NULL
);
ALTER TABLE public.email_hash OWNER TO gitea;
--
-- Name: external_login_user; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.external_login_user (
external_id character varying(255) NOT NULL,
user_id bigint NOT NULL,
login_source_id bigint NOT NULL,
raw_data json,
provider character varying(25),
email character varying(255),
name character varying(255),
first_name character varying(255),
last_name character varying(255),
nick_name character varying(255),
description character varying(255),
avatar_url text,
location character varying(255),
access_token text,
access_token_secret text,
refresh_token text,
expires_at timestamp without time zone
);
ALTER TABLE public.external_login_user OWNER TO gitea;
--
-- Name: follow; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.follow (
id bigint NOT NULL,
user_id bigint,
follow_id bigint,
created_unix bigint
);
ALTER TABLE public.follow OWNER TO gitea;
--
-- Name: follow_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.follow_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.follow_id_seq OWNER TO gitea;
--
-- Name: follow_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.follow_id_seq OWNED BY public.follow.id;
--
-- Name: gpg_key; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.gpg_key (
id bigint NOT NULL,
owner_id bigint NOT NULL,
key_id character(16) NOT NULL,
primary_key_id character(16),
content text NOT NULL,
created_unix bigint,
expired_unix bigint,
added_unix bigint,
emails text,
verified boolean DEFAULT false NOT NULL,
can_sign boolean,
can_encrypt_comms boolean,
can_encrypt_storage boolean,
can_certify boolean
);
ALTER TABLE public.gpg_key OWNER TO gitea;
--
-- Name: gpg_key_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.gpg_key_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.gpg_key_id_seq OWNER TO gitea;
--
-- Name: gpg_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.gpg_key_id_seq OWNED BY public.gpg_key.id;
--
-- Name: gpg_key_import; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.gpg_key_import (
key_id character(16) NOT NULL,
content text NOT NULL
);
ALTER TABLE public.gpg_key_import OWNER TO gitea;
--
-- Name: hook_task; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.hook_task (
id bigint NOT NULL,
hook_id bigint,
uuid character varying(255),
payload_content text,
event_type character varying(255),
is_delivered boolean,
delivered bigint,
is_succeed boolean,
request_content text,
response_content text,
payload_version integer DEFAULT 1
);
ALTER TABLE public.hook_task OWNER TO gitea;
--
-- Name: hook_task_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.hook_task_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.hook_task_id_seq OWNER TO gitea;
--
-- Name: hook_task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.hook_task_id_seq OWNED BY public.hook_task.id;
--
-- Name: issue; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.issue (
id bigint NOT NULL,
repo_id bigint,
index bigint,
poster_id bigint,
original_author character varying(255),
original_author_id bigint,
name character varying(255),
content text,
milestone_id bigint,
priority integer,
is_closed boolean,
is_pull boolean,
num_comments integer,
ref character varying(255),
pin_order integer DEFAULT 0,
deadline_unix bigint,
created_unix bigint,
updated_unix bigint,
closed_unix bigint,
is_locked boolean DEFAULT false NOT NULL,
content_version integer DEFAULT 0 NOT NULL,
time_estimate bigint DEFAULT 0 NOT NULL
);
ALTER TABLE public.issue OWNER TO gitea;
--
-- Name: issue_assignees; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.issue_assignees (
id bigint NOT NULL,
assignee_id bigint,
issue_id bigint
);
ALTER TABLE public.issue_assignees OWNER TO gitea;
--
-- Name: issue_assignees_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.issue_assignees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.issue_assignees_id_seq OWNER TO gitea;
--
-- Name: issue_assignees_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.issue_assignees_id_seq OWNED BY public.issue_assignees.id;
--
-- Name: issue_content_history; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.issue_content_history (
id bigint NOT NULL,
poster_id bigint,
issue_id bigint,
comment_id bigint,
edited_unix bigint,
content_text text,
is_first_created boolean,
is_deleted boolean
);
ALTER TABLE public.issue_content_history OWNER TO gitea;
--
-- Name: issue_content_history_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.issue_content_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.issue_content_history_id_seq OWNER TO gitea;
--
-- Name: issue_content_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.issue_content_history_id_seq OWNED BY public.issue_content_history.id;
--
-- Name: issue_dependency; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.issue_dependency (
id bigint NOT NULL,
user_id bigint NOT NULL,
issue_id bigint NOT NULL,
dependency_id bigint NOT NULL,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.issue_dependency OWNER TO gitea;
--
-- Name: issue_dependency_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.issue_dependency_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.issue_dependency_id_seq OWNER TO gitea;
--
-- Name: issue_dependency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.issue_dependency_id_seq OWNED BY public.issue_dependency.id;
--
-- Name: issue_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.issue_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.issue_id_seq OWNER TO gitea;
--
-- Name: issue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.issue_id_seq OWNED BY public.issue.id;
--
-- Name: issue_index; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.issue_index (
group_id bigint NOT NULL,
max_index bigint
);
ALTER TABLE public.issue_index OWNER TO gitea;
--
-- Name: issue_label; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.issue_label (
id bigint NOT NULL,
issue_id bigint,
label_id bigint
);
ALTER TABLE public.issue_label OWNER TO gitea;
--
-- Name: issue_label_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.issue_label_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.issue_label_id_seq OWNER TO gitea;
--
-- Name: issue_label_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.issue_label_id_seq OWNED BY public.issue_label.id;
--
-- Name: issue_user; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.issue_user (
id bigint NOT NULL,
uid bigint,
issue_id bigint,
is_read boolean,
is_mentioned boolean
);
ALTER TABLE public.issue_user OWNER TO gitea;
--
-- Name: issue_user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.issue_user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.issue_user_id_seq OWNER TO gitea;
--
-- Name: issue_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.issue_user_id_seq OWNED BY public.issue_user.id;
--
-- Name: issue_watch; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.issue_watch (
id bigint NOT NULL,
user_id bigint NOT NULL,
issue_id bigint NOT NULL,
is_watching boolean NOT NULL,
created_unix bigint NOT NULL,
updated_unix bigint NOT NULL
);
ALTER TABLE public.issue_watch OWNER TO gitea;
--
-- Name: issue_watch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.issue_watch_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.issue_watch_id_seq OWNER TO gitea;
--
-- Name: issue_watch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.issue_watch_id_seq OWNED BY public.issue_watch.id;
--
-- Name: label; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.label (
id bigint NOT NULL,
repo_id bigint,
org_id bigint,
name character varying(255),
exclusive boolean,
description character varying(255),
color character varying(7),
num_issues integer,
num_closed_issues integer,
created_unix bigint,
updated_unix bigint,
archived_unix bigint
);
ALTER TABLE public.label OWNER TO gitea;
--
-- Name: label_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.label_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.label_id_seq OWNER TO gitea;
--
-- Name: label_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.label_id_seq OWNED BY public.label.id;
--
-- Name: language_stat; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.language_stat (
id bigint NOT NULL,
repo_id bigint NOT NULL,
commit_id character varying(255),
is_primary boolean,
language character varying(50) NOT NULL,
size bigint DEFAULT 0 NOT NULL,
created_unix bigint
);
ALTER TABLE public.language_stat OWNER TO gitea;
--
-- Name: language_stat_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.language_stat_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.language_stat_id_seq OWNER TO gitea;
--
-- Name: language_stat_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.language_stat_id_seq OWNED BY public.language_stat.id;
--
-- Name: lfs_lock; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.lfs_lock (
id bigint NOT NULL,
repo_id bigint NOT NULL,
owner_id bigint NOT NULL,
path text,
created timestamp without time zone
);
ALTER TABLE public.lfs_lock OWNER TO gitea;
--
-- Name: lfs_lock_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.lfs_lock_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.lfs_lock_id_seq OWNER TO gitea;
--
-- Name: lfs_lock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.lfs_lock_id_seq OWNED BY public.lfs_lock.id;
--
-- Name: lfs_meta_object; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.lfs_meta_object (
id bigint NOT NULL,
oid character varying(255) NOT NULL,
size bigint NOT NULL,
repository_id bigint NOT NULL,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.lfs_meta_object OWNER TO gitea;
--
-- Name: lfs_meta_object_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.lfs_meta_object_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.lfs_meta_object_id_seq OWNER TO gitea;
--
-- Name: lfs_meta_object_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.lfs_meta_object_id_seq OWNED BY public.lfs_meta_object.id;
--
-- Name: login_source; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.login_source (
id bigint NOT NULL,
type integer,
name character varying(255),
is_active boolean DEFAULT false NOT NULL,
is_sync_enabled boolean DEFAULT false NOT NULL,
cfg text,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.login_source OWNER TO gitea;
--
-- Name: login_source_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.login_source_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.login_source_id_seq OWNER TO gitea;
--
-- Name: login_source_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.login_source_id_seq OWNED BY public.login_source.id;
--
-- Name: milestone; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.milestone (
id bigint NOT NULL,
repo_id bigint,
name character varying(255),
content text,
is_closed boolean,
num_issues integer,
num_closed_issues integer,
completeness integer,
created_unix bigint,
updated_unix bigint,
deadline_unix bigint,
closed_date_unix bigint
);
ALTER TABLE public.milestone OWNER TO gitea;
--
-- Name: milestone_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.milestone_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.milestone_id_seq OWNER TO gitea;
--
-- Name: milestone_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.milestone_id_seq OWNED BY public.milestone.id;
--
-- Name: mirror; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.mirror (
id bigint NOT NULL,
repo_id bigint,
"interval" bigint,
enable_prune boolean DEFAULT true NOT NULL,
updated_unix bigint,
next_update_unix bigint,
lfs_enabled boolean DEFAULT false NOT NULL,
lfs_endpoint text,
remote_address character varying(2048)
);
ALTER TABLE public.mirror OWNER TO gitea;
--
-- Name: mirror_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.mirror_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.mirror_id_seq OWNER TO gitea;
--
-- Name: mirror_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.mirror_id_seq OWNED BY public.mirror.id;
--
-- Name: notice; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.notice (
id bigint NOT NULL,
type integer,
description text,
created_unix bigint
);
ALTER TABLE public.notice OWNER TO gitea;
--
-- Name: notice_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.notice_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.notice_id_seq OWNER TO gitea;
--
-- Name: notice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.notice_id_seq OWNED BY public.notice.id;
--
-- Name: notification; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.notification (
id bigint NOT NULL,
user_id bigint NOT NULL,
repo_id bigint NOT NULL,
status smallint NOT NULL,
source smallint NOT NULL,
issue_id bigint NOT NULL,
commit_id character varying(255),
comment_id bigint,
updated_by bigint NOT NULL,
created_unix bigint NOT NULL,
updated_unix bigint NOT NULL
);
ALTER TABLE public.notification OWNER TO gitea;
--
-- Name: notification_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.notification_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.notification_id_seq OWNER TO gitea;
--
-- Name: notification_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.notification_id_seq OWNED BY public.notification.id;
--
-- Name: oauth2_application; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.oauth2_application (
id bigint NOT NULL,
uid bigint,
name character varying(255),
client_id character varying(255),
client_secret character varying(255),
confidential_client boolean DEFAULT true NOT NULL,
redirect_uris text,
created_unix bigint,
updated_unix bigint,
skip_secondary_authorization boolean DEFAULT false NOT NULL
);
ALTER TABLE public.oauth2_application OWNER TO gitea;
--
-- Name: oauth2_application_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.oauth2_application_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.oauth2_application_id_seq OWNER TO gitea;
--
-- Name: oauth2_application_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.oauth2_application_id_seq OWNED BY public.oauth2_application.id;
--
-- Name: oauth2_authorization_code; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.oauth2_authorization_code (
id bigint NOT NULL,
grant_id bigint,
code character varying(255),
code_challenge character varying(255),
code_challenge_method character varying(255),
redirect_uri character varying(255),
valid_until bigint
);
ALTER TABLE public.oauth2_authorization_code OWNER TO gitea;
--
-- Name: oauth2_authorization_code_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.oauth2_authorization_code_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.oauth2_authorization_code_id_seq OWNER TO gitea;
--
-- Name: oauth2_authorization_code_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.oauth2_authorization_code_id_seq OWNED BY public.oauth2_authorization_code.id;
--
-- Name: oauth2_grant; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.oauth2_grant (
id bigint NOT NULL,
user_id bigint,
application_id bigint,
counter bigint DEFAULT 1 NOT NULL,
scope text,
nonce text,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.oauth2_grant OWNER TO gitea;
--
-- Name: oauth2_grant_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.oauth2_grant_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.oauth2_grant_id_seq OWNER TO gitea;
--
-- Name: oauth2_grant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.oauth2_grant_id_seq OWNED BY public.oauth2_grant.id;
--
-- Name: org_user; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.org_user (
id bigint NOT NULL,
uid bigint,
org_id bigint,
is_public boolean
);
ALTER TABLE public.org_user OWNER TO gitea;
--
-- Name: org_user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.org_user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.org_user_id_seq OWNER TO gitea;
--
-- Name: org_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.org_user_id_seq OWNED BY public.org_user.id;
--
-- Name: package; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.package (
id bigint NOT NULL,
owner_id bigint NOT NULL,
repo_id bigint,
type character varying(255) NOT NULL,
name character varying(255) NOT NULL,
lower_name character varying(255) NOT NULL,
semver_compatible boolean DEFAULT false NOT NULL,
is_internal boolean DEFAULT false NOT NULL
);
ALTER TABLE public.package OWNER TO gitea;
--
-- Name: package_blob; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.package_blob (
id bigint NOT NULL,
size bigint DEFAULT 0 NOT NULL,
hash_md5 character(32) NOT NULL,
hash_sha1 character(40) NOT NULL,
hash_sha256 character(64) NOT NULL,
hash_sha512 character(128) NOT NULL,
created_unix bigint NOT NULL
);
ALTER TABLE public.package_blob OWNER TO gitea;
--
-- Name: package_blob_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.package_blob_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.package_blob_id_seq OWNER TO gitea;
--
-- Name: package_blob_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.package_blob_id_seq OWNED BY public.package_blob.id;
--
-- Name: package_blob_upload; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.package_blob_upload (
id character varying(255) NOT NULL,
bytes_received bigint DEFAULT 0 NOT NULL,
hash_state_bytes bytea,
created_unix bigint NOT NULL,
updated_unix bigint NOT NULL
);
ALTER TABLE public.package_blob_upload OWNER TO gitea;
--
-- Name: package_cleanup_rule; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.package_cleanup_rule (
id bigint NOT NULL,
enabled boolean DEFAULT false NOT NULL,
owner_id bigint DEFAULT 0 NOT NULL,
type character varying(255) NOT NULL,
keep_count integer DEFAULT 0 NOT NULL,
keep_pattern character varying(255) DEFAULT ''::character varying NOT NULL,
remove_days integer DEFAULT 0 NOT NULL,
remove_pattern character varying(255) DEFAULT ''::character varying NOT NULL,
match_full_name boolean DEFAULT false NOT NULL,
created_unix bigint DEFAULT 0 NOT NULL,
updated_unix bigint DEFAULT 0 NOT NULL
);
ALTER TABLE public.package_cleanup_rule OWNER TO gitea;
--
-- Name: package_cleanup_rule_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.package_cleanup_rule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.package_cleanup_rule_id_seq OWNER TO gitea;
--
-- Name: package_cleanup_rule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.package_cleanup_rule_id_seq OWNED BY public.package_cleanup_rule.id;
--
-- Name: package_file; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.package_file (
id bigint NOT NULL,
version_id bigint NOT NULL,
blob_id bigint NOT NULL,
name character varying(255) NOT NULL,
lower_name character varying(255) NOT NULL,
composite_key character varying(255),
is_lead boolean DEFAULT false NOT NULL,
created_unix bigint NOT NULL
);
ALTER TABLE public.package_file OWNER TO gitea;
--
-- Name: package_file_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.package_file_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.package_file_id_seq OWNER TO gitea;
--
-- Name: package_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.package_file_id_seq OWNED BY public.package_file.id;
--
-- Name: package_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.package_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.package_id_seq OWNER TO gitea;
--
-- Name: package_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.package_id_seq OWNED BY public.package.id;
--
-- Name: package_property; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.package_property (
id bigint NOT NULL,
ref_type bigint NOT NULL,
ref_id bigint NOT NULL,
name character varying(255) NOT NULL,
value text NOT NULL
);
ALTER TABLE public.package_property OWNER TO gitea;
--
-- Name: package_property_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.package_property_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.package_property_id_seq OWNER TO gitea;
--
-- Name: package_property_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.package_property_id_seq OWNED BY public.package_property.id;
--
-- Name: package_version; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.package_version (
id bigint NOT NULL,
package_id bigint NOT NULL,
creator_id bigint DEFAULT 0 NOT NULL,
version character varying(255) NOT NULL,
lower_version character varying(255) NOT NULL,
created_unix bigint NOT NULL,
is_internal boolean DEFAULT false NOT NULL,
metadata_json text,
download_count bigint DEFAULT 0 NOT NULL
);
ALTER TABLE public.package_version OWNER TO gitea;
--
-- Name: package_version_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.package_version_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.package_version_id_seq OWNER TO gitea;
--
-- Name: package_version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.package_version_id_seq OWNED BY public.package_version.id;
--
-- Name: project; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.project (
id bigint NOT NULL,
title character varying(255) NOT NULL,
description text,
owner_id bigint,
repo_id bigint,
creator_id bigint NOT NULL,
is_closed boolean,
board_type bigint,
card_type bigint,
type bigint,
created_unix bigint,
updated_unix bigint,
closed_date_unix bigint
);
ALTER TABLE public.project OWNER TO gitea;
--
-- Name: project_board; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.project_board (
id bigint NOT NULL,
title character varying(255),
"default" boolean DEFAULT false NOT NULL,
sorting integer DEFAULT 0 NOT NULL,
color character varying(7),
project_id bigint NOT NULL,
creator_id bigint NOT NULL,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.project_board OWNER TO gitea;
--
-- Name: project_board_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.project_board_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.project_board_id_seq OWNER TO gitea;
--
-- Name: project_board_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.project_board_id_seq OWNED BY public.project_board.id;
--
-- Name: project_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.project_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.project_id_seq OWNER TO gitea;
--
-- Name: project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.project_id_seq OWNED BY public.project.id;
--
-- Name: project_issue; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.project_issue (
id bigint NOT NULL,
issue_id bigint,
project_id bigint,
project_board_id bigint,
sorting bigint DEFAULT 0 NOT NULL
);
ALTER TABLE public.project_issue OWNER TO gitea;
--
-- Name: project_issue_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.project_issue_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.project_issue_id_seq OWNER TO gitea;
--
-- Name: project_issue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.project_issue_id_seq OWNED BY public.project_issue.id;
--
-- Name: protected_branch; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.protected_branch (
id bigint NOT NULL,
repo_id bigint,
branch_name character varying(255),
can_push boolean DEFAULT false NOT NULL,
enable_whitelist boolean,
whitelist_user_i_ds text,
whitelist_team_i_ds text,
enable_merge_whitelist boolean DEFAULT false NOT NULL,
whitelist_deploy_keys boolean DEFAULT false NOT NULL,
merge_whitelist_user_i_ds text,
merge_whitelist_team_i_ds text,
enable_status_check boolean DEFAULT false NOT NULL,
status_check_contexts text,
enable_approvals_whitelist boolean DEFAULT false NOT NULL,
approvals_whitelist_user_i_ds text,
approvals_whitelist_team_i_ds text,
required_approvals bigint DEFAULT 0 NOT NULL,
block_on_rejected_reviews boolean DEFAULT false NOT NULL,
block_on_official_review_requests boolean DEFAULT false NOT NULL,
block_on_outdated_branch boolean DEFAULT false NOT NULL,
dismiss_stale_approvals boolean DEFAULT false NOT NULL,
require_signed_commits boolean DEFAULT false NOT NULL,
protected_file_patterns text,
unprotected_file_patterns text,
created_unix bigint,
updated_unix bigint,
ignore_stale_approvals boolean DEFAULT false NOT NULL,
can_force_push boolean DEFAULT false NOT NULL,
enable_force_push_allowlist boolean DEFAULT false NOT NULL,
force_push_allowlist_user_i_ds text,
force_push_allowlist_team_i_ds text,
force_push_allowlist_deploy_keys boolean DEFAULT false NOT NULL,
block_admin_merge_override boolean DEFAULT false NOT NULL,
priority bigint DEFAULT 0 NOT NULL
);
ALTER TABLE public.protected_branch OWNER TO gitea;
--
-- Name: protected_branch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.protected_branch_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.protected_branch_id_seq OWNER TO gitea;
--
-- Name: protected_branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.protected_branch_id_seq OWNED BY public.protected_branch.id;
--
-- Name: protected_tag; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.protected_tag (
id bigint NOT NULL,
repo_id bigint,
name_pattern character varying(255),
allowlist_user_i_ds text,
allowlist_team_i_ds text,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.protected_tag OWNER TO gitea;
--
-- Name: protected_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.protected_tag_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.protected_tag_id_seq OWNER TO gitea;
--
-- Name: protected_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.protected_tag_id_seq OWNED BY public.protected_tag.id;
--
-- Name: public_key; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.public_key (
id bigint NOT NULL,
owner_id bigint NOT NULL,
name character varying(255) NOT NULL,
fingerprint character varying(255) NOT NULL,
content text NOT NULL,
mode integer DEFAULT 2 NOT NULL,
type integer DEFAULT 1 NOT NULL,
login_source_id bigint DEFAULT 0 NOT NULL,
created_unix bigint,
updated_unix bigint,
verified boolean DEFAULT false NOT NULL
);
ALTER TABLE public.public_key OWNER TO gitea;
--
-- Name: public_key_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.public_key_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.public_key_id_seq OWNER TO gitea;
--
-- Name: public_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.public_key_id_seq OWNED BY public.public_key.id;
--
-- Name: pull_auto_merge; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.pull_auto_merge (
id bigint NOT NULL,
pull_id bigint,
doer_id bigint NOT NULL,
merge_style character varying(30),
message text,
created_unix bigint
);
ALTER TABLE public.pull_auto_merge OWNER TO gitea;
--
-- Name: pull_auto_merge_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.pull_auto_merge_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.pull_auto_merge_id_seq OWNER TO gitea;
--
-- Name: pull_auto_merge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.pull_auto_merge_id_seq OWNED BY public.pull_auto_merge.id;
--
-- Name: pull_request; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.pull_request (
id bigint NOT NULL,
type integer,
status integer,
conflicted_files json,
commits_ahead integer,
commits_behind integer,
changed_protected_files json,
issue_id bigint,
index bigint,
head_repo_id bigint,
base_repo_id bigint,
head_branch character varying(255),
base_branch character varying(255),
merge_base character varying(64),
allow_maintainer_edit boolean DEFAULT false NOT NULL,
has_merged boolean,
merged_commit_id character varying(64),
merger_id bigint,
merged_unix bigint,
flow integer DEFAULT 0 NOT NULL
);
ALTER TABLE public.pull_request OWNER TO gitea;
--
-- Name: pull_request_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.pull_request_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.pull_request_id_seq OWNER TO gitea;
--
-- Name: pull_request_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.pull_request_id_seq OWNED BY public.pull_request.id;
--
-- Name: push_mirror; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.push_mirror (
id bigint NOT NULL,
repo_id bigint,
remote_name character varying(255),
remote_address character varying(2048),
sync_on_commit boolean DEFAULT true NOT NULL,
"interval" bigint,
created_unix bigint,
last_update bigint,
last_error text
);
ALTER TABLE public.push_mirror OWNER TO gitea;
--
-- Name: push_mirror_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.push_mirror_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.push_mirror_id_seq OWNER TO gitea;
--
-- Name: push_mirror_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.push_mirror_id_seq OWNED BY public.push_mirror.id;
--
-- Name: reaction; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.reaction (
id bigint NOT NULL,
type character varying(255) NOT NULL,
issue_id bigint NOT NULL,
comment_id bigint,
user_id bigint NOT NULL,
original_author_id bigint DEFAULT 0 NOT NULL,
original_author character varying(255),
created_unix bigint
);
ALTER TABLE public.reaction OWNER TO gitea;
--
-- Name: reaction_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.reaction_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.reaction_id_seq OWNER TO gitea;
--
-- Name: reaction_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.reaction_id_seq OWNED BY public.reaction.id;
--
-- Name: release; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.release (
id bigint NOT NULL,
repo_id bigint,
publisher_id bigint,
tag_name character varying(255),
original_author character varying(255),
original_author_id bigint,
lower_tag_name character varying(255),
target character varying(255),
title character varying(255),
sha1 character varying(64),
num_commits bigint,
note text,
is_draft boolean DEFAULT false NOT NULL,
is_prerelease boolean DEFAULT false NOT NULL,
is_tag boolean DEFAULT false NOT NULL,
created_unix bigint
);
ALTER TABLE public.release OWNER TO gitea;
--
-- Name: release_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.release_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.release_id_seq OWNER TO gitea;
--
-- Name: release_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.release_id_seq OWNED BY public.release.id;
--
-- Name: renamed_branch; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.renamed_branch (
id bigint NOT NULL,
repo_id bigint NOT NULL,
"from" character varying(255),
"to" character varying(255),
created_unix bigint
);
ALTER TABLE public.renamed_branch OWNER TO gitea;
--
-- Name: renamed_branch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.renamed_branch_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.renamed_branch_id_seq OWNER TO gitea;
--
-- Name: renamed_branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.renamed_branch_id_seq OWNED BY public.renamed_branch.id;
--
-- Name: repo_archiver; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.repo_archiver (
id bigint NOT NULL,
repo_id bigint,
type integer,
status integer,
commit_id character varying(64),
created_unix bigint NOT NULL
);
ALTER TABLE public.repo_archiver OWNER TO gitea;
--
-- Name: repo_archiver_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.repo_archiver_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.repo_archiver_id_seq OWNER TO gitea;
--
-- Name: repo_archiver_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.repo_archiver_id_seq OWNED BY public.repo_archiver.id;
--
-- Name: repo_indexer_status; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.repo_indexer_status (
id bigint NOT NULL,
repo_id bigint,
commit_sha character varying(64),
indexer_type integer DEFAULT 0 NOT NULL
);
ALTER TABLE public.repo_indexer_status OWNER TO gitea;
--
-- Name: repo_indexer_status_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.repo_indexer_status_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.repo_indexer_status_id_seq OWNER TO gitea;
--
-- Name: repo_indexer_status_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.repo_indexer_status_id_seq OWNED BY public.repo_indexer_status.id;
--
-- Name: repo_license; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.repo_license (
id bigint NOT NULL,
repo_id bigint NOT NULL,
commit_id character varying(255),
license character varying(255) NOT NULL,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.repo_license OWNER TO gitea;
--
-- Name: repo_license_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.repo_license_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.repo_license_id_seq OWNER TO gitea;
--
-- Name: repo_license_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.repo_license_id_seq OWNED BY public.repo_license.id;
--
-- Name: repo_redirect; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.repo_redirect (
id bigint NOT NULL,
owner_id bigint,
lower_name character varying(255) NOT NULL,
redirect_repo_id bigint
);
ALTER TABLE public.repo_redirect OWNER TO gitea;
--
-- Name: repo_redirect_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.repo_redirect_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.repo_redirect_id_seq OWNER TO gitea;
--
-- Name: repo_redirect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.repo_redirect_id_seq OWNED BY public.repo_redirect.id;
--
-- Name: repo_topic; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.repo_topic (
repo_id bigint NOT NULL,
topic_id bigint NOT NULL
);
ALTER TABLE public.repo_topic OWNER TO gitea;
--
-- Name: repo_transfer; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.repo_transfer (
id bigint NOT NULL,
doer_id bigint,
recipient_id bigint,
repo_id bigint,
team_i_ds text,
created_unix bigint NOT NULL,
updated_unix bigint NOT NULL
);
ALTER TABLE public.repo_transfer OWNER TO gitea;
--
-- Name: repo_transfer_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.repo_transfer_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.repo_transfer_id_seq OWNER TO gitea;
--
-- Name: repo_transfer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.repo_transfer_id_seq OWNED BY public.repo_transfer.id;
--
-- Name: repo_unit; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.repo_unit (
id bigint NOT NULL,
repo_id bigint,
type integer,
config text,
created_unix bigint,
everyone_access_mode integer DEFAULT 0 NOT NULL
);
ALTER TABLE public.repo_unit OWNER TO gitea;
--
-- Name: repo_unit_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.repo_unit_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.repo_unit_id_seq OWNER TO gitea;
--
-- Name: repo_unit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.repo_unit_id_seq OWNED BY public.repo_unit.id;
--
-- Name: repository; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.repository (
id bigint NOT NULL,
owner_id bigint,
owner_name character varying(255),
lower_name character varying(255) NOT NULL,
name character varying(255) NOT NULL,
description text,
website character varying(2048),
original_service_type integer,
original_url character varying(2048),
default_branch character varying(255),
num_watches integer,
num_stars integer,
num_forks integer,
num_issues integer,
num_closed_issues integer,
num_pulls integer,
num_closed_pulls integer,
num_milestones integer DEFAULT 0 NOT NULL,
num_closed_milestones integer DEFAULT 0 NOT NULL,
num_projects integer DEFAULT 0 NOT NULL,
num_closed_projects integer DEFAULT 0 NOT NULL,
num_action_runs integer DEFAULT 0 NOT NULL,
num_closed_action_runs integer DEFAULT 0 NOT NULL,
is_private boolean,
is_empty boolean,
is_archived boolean,
is_mirror boolean,
status integer DEFAULT 0 NOT NULL,
is_fork boolean DEFAULT false NOT NULL,
fork_id bigint,
is_template boolean DEFAULT false NOT NULL,
template_id bigint,
size bigint DEFAULT 0 NOT NULL,
git_size bigint DEFAULT 0 NOT NULL,
lfs_size bigint DEFAULT 0 NOT NULL,
is_fsck_enabled boolean DEFAULT true NOT NULL,
close_issues_via_commit_in_any_branch boolean DEFAULT false NOT NULL,
topics json,
trust_model integer,
avatar character varying(64),
created_unix bigint,
updated_unix bigint,
archived_unix bigint DEFAULT 0,
object_format_name character varying(6) DEFAULT 'sha1'::character varying NOT NULL,
default_wiki_branch character varying(255)
);
ALTER TABLE public.repository OWNER TO gitea;
--
-- Name: repository_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.repository_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.repository_id_seq OWNER TO gitea;
--
-- Name: repository_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.repository_id_seq OWNED BY public.repository.id;
--
-- Name: review; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.review (
id bigint NOT NULL,
type integer,
reviewer_id bigint,
reviewer_team_id bigint DEFAULT 0 NOT NULL,
original_author character varying(255),
original_author_id bigint,
issue_id bigint,
content text,
official boolean DEFAULT false NOT NULL,
commit_id character varying(64),
stale boolean DEFAULT false NOT NULL,
dismissed boolean DEFAULT false NOT NULL,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.review OWNER TO gitea;
--
-- Name: review_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.review_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.review_id_seq OWNER TO gitea;
--
-- Name: review_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.review_id_seq OWNED BY public.review.id;
--
-- Name: review_state; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.review_state (
id bigint NOT NULL,
user_id bigint NOT NULL,
pull_id bigint DEFAULT 0 NOT NULL,
commit_sha character varying(64) NOT NULL,
updated_files json NOT NULL,
updated_unix bigint
);
ALTER TABLE public.review_state OWNER TO gitea;
--
-- Name: review_state_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.review_state_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.review_state_id_seq OWNER TO gitea;
--
-- Name: review_state_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.review_state_id_seq OWNED BY public.review_state.id;
--
-- Name: secret; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.secret (
id bigint NOT NULL,
owner_id bigint NOT NULL,
repo_id bigint DEFAULT 0 NOT NULL,
name character varying(255) NOT NULL,
data text,
created_unix bigint NOT NULL
);
ALTER TABLE public.secret OWNER TO gitea;
--
-- Name: secret_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.secret_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.secret_id_seq OWNER TO gitea;
--
-- Name: secret_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.secret_id_seq OWNED BY public.secret.id;
--
-- Name: session; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.session (
key character(16) NOT NULL,
data bytea,
expiry bigint
);
ALTER TABLE public.session OWNER TO gitea;
--
-- Name: star; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.star (
id bigint NOT NULL,
uid bigint,
repo_id bigint,
created_unix bigint
);
ALTER TABLE public.star OWNER TO gitea;
--
-- Name: star_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.star_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.star_id_seq OWNER TO gitea;
--
-- Name: star_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.star_id_seq OWNED BY public.star.id;
--
-- Name: stopwatch; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.stopwatch (
id bigint NOT NULL,
issue_id bigint,
user_id bigint,
created_unix bigint
);
ALTER TABLE public.stopwatch OWNER TO gitea;
--
-- Name: stopwatch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.stopwatch_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.stopwatch_id_seq OWNER TO gitea;
--
-- Name: stopwatch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.stopwatch_id_seq OWNED BY public.stopwatch.id;
--
-- Name: system_setting; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.system_setting (
id bigint NOT NULL,
setting_key character varying(255),
setting_value text,
version integer,
created bigint,
updated bigint
);
ALTER TABLE public.system_setting OWNER TO gitea;
--
-- Name: system_setting_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.system_setting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.system_setting_id_seq OWNER TO gitea;
--
-- Name: system_setting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.system_setting_id_seq OWNED BY public.system_setting.id;
--
-- Name: task; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.task (
id bigint NOT NULL,
doer_id bigint,
owner_id bigint,
repo_id bigint,
type integer,
status integer,
start_time bigint,
end_time bigint,
payload_content text,
message text,
created bigint
);
ALTER TABLE public.task OWNER TO gitea;
--
-- Name: task_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.task_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.task_id_seq OWNER TO gitea;
--
-- Name: task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.task_id_seq OWNED BY public.task.id;
--
-- Name: team; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.team (
id bigint NOT NULL,
org_id bigint,
lower_name character varying(255),
name character varying(255),
description character varying(255),
authorize integer,
num_repos integer,
num_members integer,
includes_all_repositories boolean DEFAULT false NOT NULL,
can_create_org_repo boolean DEFAULT false NOT NULL
);
ALTER TABLE public.team OWNER TO gitea;
--
-- Name: team_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.team_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.team_id_seq OWNER TO gitea;
--
-- Name: team_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.team_id_seq OWNED BY public.team.id;
--
-- Name: team_invite; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.team_invite (
id bigint NOT NULL,
token character varying(255) DEFAULT ''::character varying NOT NULL,
inviter_id bigint DEFAULT 0 NOT NULL,
org_id bigint DEFAULT 0 NOT NULL,
team_id bigint DEFAULT 0 NOT NULL,
email character varying(255) DEFAULT ''::character varying NOT NULL,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.team_invite OWNER TO gitea;
--
-- Name: team_invite_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.team_invite_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.team_invite_id_seq OWNER TO gitea;
--
-- Name: team_invite_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.team_invite_id_seq OWNED BY public.team_invite.id;
--
-- Name: team_repo; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.team_repo (
id bigint NOT NULL,
org_id bigint,
team_id bigint,
repo_id bigint
);
ALTER TABLE public.team_repo OWNER TO gitea;
--
-- Name: team_repo_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.team_repo_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.team_repo_id_seq OWNER TO gitea;
--
-- Name: team_repo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.team_repo_id_seq OWNED BY public.team_repo.id;
--
-- Name: team_unit; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.team_unit (
id bigint NOT NULL,
org_id bigint,
team_id bigint,
type integer,
access_mode integer
);
ALTER TABLE public.team_unit OWNER TO gitea;
--
-- Name: team_unit_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.team_unit_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.team_unit_id_seq OWNER TO gitea;
--
-- Name: team_unit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.team_unit_id_seq OWNED BY public.team_unit.id;
--
-- Name: team_user; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.team_user (
id bigint NOT NULL,
org_id bigint,
team_id bigint,
uid bigint
);
ALTER TABLE public.team_user OWNER TO gitea;
--
-- Name: team_user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.team_user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.team_user_id_seq OWNER TO gitea;
--
-- Name: team_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.team_user_id_seq OWNED BY public.team_user.id;
--
-- Name: topic; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.topic (
id bigint NOT NULL,
name character varying(50),
repo_count integer,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.topic OWNER TO gitea;
--
-- Name: topic_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.topic_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.topic_id_seq OWNER TO gitea;
--
-- Name: topic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.topic_id_seq OWNED BY public.topic.id;
--
-- Name: tracked_time; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.tracked_time (
id bigint NOT NULL,
issue_id bigint,
user_id bigint,
created_unix bigint,
"time" bigint NOT NULL,
deleted boolean DEFAULT false NOT NULL
);
ALTER TABLE public.tracked_time OWNER TO gitea;
--
-- Name: tracked_time_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.tracked_time_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.tracked_time_id_seq OWNER TO gitea;
--
-- Name: tracked_time_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.tracked_time_id_seq OWNED BY public.tracked_time.id;
--
-- Name: two_factor; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.two_factor (
id bigint NOT NULL,
uid bigint,
secret character varying(255),
scratch_salt character varying(255),
scratch_hash character varying(255),
last_used_passcode character varying(10),
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.two_factor OWNER TO gitea;
--
-- Name: two_factor_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.two_factor_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.two_factor_id_seq OWNER TO gitea;
--
-- Name: two_factor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.two_factor_id_seq OWNED BY public.two_factor.id;
--
-- Name: upload; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.upload (
id bigint NOT NULL,
uuid uuid,
name character varying(255)
);
ALTER TABLE public.upload OWNER TO gitea;
--
-- Name: upload_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.upload_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.upload_id_seq OWNER TO gitea;
--
-- Name: upload_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.upload_id_seq OWNED BY public.upload.id;
--
-- Name: user; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public."user" (
id bigint NOT NULL,
lower_name character varying(255) NOT NULL,
name character varying(255) NOT NULL,
full_name character varying(255),
email character varying(255) NOT NULL,
keep_email_private boolean,
email_notifications_preference character varying(20) DEFAULT 'enabled'::character varying NOT NULL,
passwd character varying(255) NOT NULL,
passwd_hash_algo character varying(255) DEFAULT 'argon2'::character varying NOT NULL,
must_change_password boolean DEFAULT false NOT NULL,
login_type integer,
login_source bigint DEFAULT 0 NOT NULL,
login_name character varying(255),
type integer,
location character varying(255),
website character varying(255),
rands character varying(32),
salt character varying(32),
language character varying(5),
description character varying(255),
created_unix bigint,
updated_unix bigint,
last_login_unix bigint,
last_repo_visibility boolean,
max_repo_creation integer DEFAULT '-1'::integer NOT NULL,
is_active boolean,
is_admin boolean,
is_restricted boolean DEFAULT false NOT NULL,
allow_git_hook boolean,
allow_import_local boolean,
allow_create_organization boolean DEFAULT true,
prohibit_login boolean DEFAULT false NOT NULL,
avatar character varying(2048) NOT NULL,
avatar_email character varying(255) NOT NULL,
use_custom_avatar boolean,
num_followers integer,
num_following integer DEFAULT 0 NOT NULL,
num_stars integer,
num_repos integer,
num_teams integer,
num_members integer,
visibility integer DEFAULT 0 NOT NULL,
repo_admin_change_team_access boolean DEFAULT false NOT NULL,
diff_view_style character varying(255) DEFAULT ''::character varying NOT NULL,
theme character varying(255) DEFAULT ''::character varying NOT NULL,
keep_activity_private boolean DEFAULT false NOT NULL
);
ALTER TABLE public."user" OWNER TO gitea;
--
-- Name: user_badge; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.user_badge (
id bigint NOT NULL,
badge_id bigint,
user_id bigint
);
ALTER TABLE public.user_badge OWNER TO gitea;
--
-- Name: user_badge_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.user_badge_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.user_badge_id_seq OWNER TO gitea;
--
-- Name: user_badge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.user_badge_id_seq OWNED BY public.user_badge.id;
--
-- Name: user_blocking; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.user_blocking (
id bigint NOT NULL,
blocker_id bigint,
blockee_id bigint,
note character varying(255),
created_unix bigint
);
ALTER TABLE public.user_blocking OWNER TO gitea;
--
-- Name: user_blocking_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.user_blocking_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.user_blocking_id_seq OWNER TO gitea;
--
-- Name: user_blocking_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.user_blocking_id_seq OWNED BY public.user_blocking.id;
--
-- Name: user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.user_id_seq OWNER TO gitea;
--
-- Name: user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.user_id_seq OWNED BY public."user".id;
--
-- Name: user_open_id; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.user_open_id (
id bigint NOT NULL,
uid bigint NOT NULL,
uri character varying(255) NOT NULL,
show boolean DEFAULT false
);
ALTER TABLE public.user_open_id OWNER TO gitea;
--
-- Name: user_open_id_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.user_open_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.user_open_id_id_seq OWNER TO gitea;
--
-- Name: user_open_id_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.user_open_id_id_seq OWNED BY public.user_open_id.id;
--
-- Name: user_redirect; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.user_redirect (
id bigint NOT NULL,
lower_name character varying(255) NOT NULL,
redirect_user_id bigint
);
ALTER TABLE public.user_redirect OWNER TO gitea;
--
-- Name: user_redirect_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.user_redirect_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.user_redirect_id_seq OWNER TO gitea;
--
-- Name: user_redirect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.user_redirect_id_seq OWNED BY public.user_redirect.id;
--
-- Name: user_setting; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.user_setting (
id bigint NOT NULL,
user_id bigint,
setting_key character varying(255),
setting_value text
);
ALTER TABLE public.user_setting OWNER TO gitea;
--
-- Name: user_setting_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.user_setting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.user_setting_id_seq OWNER TO gitea;
--
-- Name: user_setting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.user_setting_id_seq OWNED BY public.user_setting.id;
--
-- Name: version; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.version (
id bigint NOT NULL,
version bigint
);
ALTER TABLE public.version OWNER TO gitea;
--
-- Name: version_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.version_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.version_id_seq OWNER TO gitea;
--
-- Name: version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.version_id_seq OWNED BY public.version.id;
--
-- Name: watch; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.watch (
id bigint NOT NULL,
user_id bigint,
repo_id bigint,
mode smallint DEFAULT 1 NOT NULL,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.watch OWNER TO gitea;
--
-- Name: watch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.watch_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.watch_id_seq OWNER TO gitea;
--
-- Name: watch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.watch_id_seq OWNED BY public.watch.id;
--
-- Name: webauthn_credential; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.webauthn_credential (
id bigint NOT NULL,
name character varying(255),
lower_name character varying(255),
user_id bigint,
credential_id bytea,
public_key bytea,
attestation_type character varying(255),
aaguid bytea,
sign_count bigint,
clone_warning boolean,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.webauthn_credential OWNER TO gitea;
--
-- Name: webauthn_credential_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.webauthn_credential_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.webauthn_credential_id_seq OWNER TO gitea;
--
-- Name: webauthn_credential_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.webauthn_credential_id_seq OWNED BY public.webauthn_credential.id;
--
-- Name: webhook; Type: TABLE; Schema: public; Owner: gitea
--
CREATE TABLE public.webhook (
id bigint NOT NULL,
repo_id bigint,
owner_id bigint,
is_system_webhook boolean,
url text,
http_method character varying(255),
content_type integer,
secret text,
events text,
is_active boolean,
type character varying(16),
meta text,
last_status integer,
header_authorization_encrypted text,
created_unix bigint,
updated_unix bigint
);
ALTER TABLE public.webhook OWNER TO gitea;
--
-- Name: webhook_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea
--
CREATE SEQUENCE public.webhook_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.webhook_id_seq OWNER TO gitea;
--
-- Name: webhook_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea
--
ALTER SEQUENCE public.webhook_id_seq OWNED BY public.webhook.id;
--
-- Name: access id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.access ALTER COLUMN id SET DEFAULT nextval('public.access_id_seq'::regclass);
--
-- Name: access_token id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.access_token ALTER COLUMN id SET DEFAULT nextval('public.access_token_id_seq'::regclass);
--
-- Name: action id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action ALTER COLUMN id SET DEFAULT nextval('public.action_id_seq'::regclass);
--
-- Name: action_artifact id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_artifact ALTER COLUMN id SET DEFAULT nextval('public.action_artifact_id_seq'::regclass);
--
-- Name: action_run id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_run ALTER COLUMN id SET DEFAULT nextval('public.action_run_id_seq'::regclass);
--
-- Name: action_run_job id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_run_job ALTER COLUMN id SET DEFAULT nextval('public.action_run_job_id_seq'::regclass);
--
-- Name: action_runner id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_runner ALTER COLUMN id SET DEFAULT nextval('public.action_runner_id_seq'::regclass);
--
-- Name: action_runner_token id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_runner_token ALTER COLUMN id SET DEFAULT nextval('public.action_runner_token_id_seq'::regclass);
--
-- Name: action_schedule id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_schedule ALTER COLUMN id SET DEFAULT nextval('public.action_schedule_id_seq'::regclass);
--
-- Name: action_schedule_spec id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_schedule_spec ALTER COLUMN id SET DEFAULT nextval('public.action_schedule_spec_id_seq'::regclass);
--
-- Name: action_task id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_task ALTER COLUMN id SET DEFAULT nextval('public.action_task_id_seq'::regclass);
--
-- Name: action_task_output id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_task_output ALTER COLUMN id SET DEFAULT nextval('public.action_task_output_id_seq'::regclass);
--
-- Name: action_task_step id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_task_step ALTER COLUMN id SET DEFAULT nextval('public.action_task_step_id_seq'::regclass);
--
-- Name: action_tasks_version id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_tasks_version ALTER COLUMN id SET DEFAULT nextval('public.action_tasks_version_id_seq'::regclass);
--
-- Name: action_variable id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_variable ALTER COLUMN id SET DEFAULT nextval('public.action_variable_id_seq'::regclass);
--
-- Name: attachment id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.attachment ALTER COLUMN id SET DEFAULT nextval('public.attachment_id_seq'::regclass);
--
-- Name: badge id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.badge ALTER COLUMN id SET DEFAULT nextval('public.badge_id_seq'::regclass);
--
-- Name: branch id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.branch ALTER COLUMN id SET DEFAULT nextval('public.branch_id_seq'::regclass);
--
-- Name: collaboration id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.collaboration ALTER COLUMN id SET DEFAULT nextval('public.collaboration_id_seq'::regclass);
--
-- Name: comment id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.comment ALTER COLUMN id SET DEFAULT nextval('public.comment_id_seq'::regclass);
--
-- Name: commit_status id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.commit_status ALTER COLUMN id SET DEFAULT nextval('public.commit_status_id_seq'::regclass);
--
-- Name: commit_status_index id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.commit_status_index ALTER COLUMN id SET DEFAULT nextval('public.commit_status_index_id_seq'::regclass);
--
-- Name: commit_status_summary id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.commit_status_summary ALTER COLUMN id SET DEFAULT nextval('public.commit_status_summary_id_seq'::regclass);
--
-- Name: dbfs_data id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.dbfs_data ALTER COLUMN id SET DEFAULT nextval('public.dbfs_data_id_seq'::regclass);
--
-- Name: dbfs_meta id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.dbfs_meta ALTER COLUMN id SET DEFAULT nextval('public.dbfs_meta_id_seq'::regclass);
--
-- Name: deploy_key id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.deploy_key ALTER COLUMN id SET DEFAULT nextval('public.deploy_key_id_seq'::regclass);
--
-- Name: email_address id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.email_address ALTER COLUMN id SET DEFAULT nextval('public.email_address_id_seq'::regclass);
--
-- Name: follow id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.follow ALTER COLUMN id SET DEFAULT nextval('public.follow_id_seq'::regclass);
--
-- Name: gpg_key id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.gpg_key ALTER COLUMN id SET DEFAULT nextval('public.gpg_key_id_seq'::regclass);
--
-- Name: hook_task id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.hook_task ALTER COLUMN id SET DEFAULT nextval('public.hook_task_id_seq'::regclass);
--
-- Name: issue id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue ALTER COLUMN id SET DEFAULT nextval('public.issue_id_seq'::regclass);
--
-- Name: issue_assignees id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_assignees ALTER COLUMN id SET DEFAULT nextval('public.issue_assignees_id_seq'::regclass);
--
-- Name: issue_content_history id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_content_history ALTER COLUMN id SET DEFAULT nextval('public.issue_content_history_id_seq'::regclass);
--
-- Name: issue_dependency id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_dependency ALTER COLUMN id SET DEFAULT nextval('public.issue_dependency_id_seq'::regclass);
--
-- Name: issue_label id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_label ALTER COLUMN id SET DEFAULT nextval('public.issue_label_id_seq'::regclass);
--
-- Name: issue_user id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_user ALTER COLUMN id SET DEFAULT nextval('public.issue_user_id_seq'::regclass);
--
-- Name: issue_watch id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_watch ALTER COLUMN id SET DEFAULT nextval('public.issue_watch_id_seq'::regclass);
--
-- Name: label id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.label ALTER COLUMN id SET DEFAULT nextval('public.label_id_seq'::regclass);
--
-- Name: language_stat id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.language_stat ALTER COLUMN id SET DEFAULT nextval('public.language_stat_id_seq'::regclass);
--
-- Name: lfs_lock id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.lfs_lock ALTER COLUMN id SET DEFAULT nextval('public.lfs_lock_id_seq'::regclass);
--
-- Name: lfs_meta_object id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.lfs_meta_object ALTER COLUMN id SET DEFAULT nextval('public.lfs_meta_object_id_seq'::regclass);
--
-- Name: login_source id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.login_source ALTER COLUMN id SET DEFAULT nextval('public.login_source_id_seq'::regclass);
--
-- Name: milestone id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.milestone ALTER COLUMN id SET DEFAULT nextval('public.milestone_id_seq'::regclass);
--
-- Name: mirror id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.mirror ALTER COLUMN id SET DEFAULT nextval('public.mirror_id_seq'::regclass);
--
-- Name: notice id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.notice ALTER COLUMN id SET DEFAULT nextval('public.notice_id_seq'::regclass);
--
-- Name: notification id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.notification ALTER COLUMN id SET DEFAULT nextval('public.notification_id_seq'::regclass);
--
-- Name: oauth2_application id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.oauth2_application ALTER COLUMN id SET DEFAULT nextval('public.oauth2_application_id_seq'::regclass);
--
-- Name: oauth2_authorization_code id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.oauth2_authorization_code ALTER COLUMN id SET DEFAULT nextval('public.oauth2_authorization_code_id_seq'::regclass);
--
-- Name: oauth2_grant id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.oauth2_grant ALTER COLUMN id SET DEFAULT nextval('public.oauth2_grant_id_seq'::regclass);
--
-- Name: org_user id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.org_user ALTER COLUMN id SET DEFAULT nextval('public.org_user_id_seq'::regclass);
--
-- Name: package id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package ALTER COLUMN id SET DEFAULT nextval('public.package_id_seq'::regclass);
--
-- Name: package_blob id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_blob ALTER COLUMN id SET DEFAULT nextval('public.package_blob_id_seq'::regclass);
--
-- Name: package_cleanup_rule id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_cleanup_rule ALTER COLUMN id SET DEFAULT nextval('public.package_cleanup_rule_id_seq'::regclass);
--
-- Name: package_file id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_file ALTER COLUMN id SET DEFAULT nextval('public.package_file_id_seq'::regclass);
--
-- Name: package_property id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_property ALTER COLUMN id SET DEFAULT nextval('public.package_property_id_seq'::regclass);
--
-- Name: package_version id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_version ALTER COLUMN id SET DEFAULT nextval('public.package_version_id_seq'::regclass);
--
-- Name: project id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.project ALTER COLUMN id SET DEFAULT nextval('public.project_id_seq'::regclass);
--
-- Name: project_board id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.project_board ALTER COLUMN id SET DEFAULT nextval('public.project_board_id_seq'::regclass);
--
-- Name: project_issue id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.project_issue ALTER COLUMN id SET DEFAULT nextval('public.project_issue_id_seq'::regclass);
--
-- Name: protected_branch id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.protected_branch ALTER COLUMN id SET DEFAULT nextval('public.protected_branch_id_seq'::regclass);
--
-- Name: protected_tag id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.protected_tag ALTER COLUMN id SET DEFAULT nextval('public.protected_tag_id_seq'::regclass);
--
-- Name: public_key id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.public_key ALTER COLUMN id SET DEFAULT nextval('public.public_key_id_seq'::regclass);
--
-- Name: pull_auto_merge id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.pull_auto_merge ALTER COLUMN id SET DEFAULT nextval('public.pull_auto_merge_id_seq'::regclass);
--
-- Name: pull_request id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.pull_request ALTER COLUMN id SET DEFAULT nextval('public.pull_request_id_seq'::regclass);
--
-- Name: push_mirror id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.push_mirror ALTER COLUMN id SET DEFAULT nextval('public.push_mirror_id_seq'::regclass);
--
-- Name: reaction id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.reaction ALTER COLUMN id SET DEFAULT nextval('public.reaction_id_seq'::regclass);
--
-- Name: release id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.release ALTER COLUMN id SET DEFAULT nextval('public.release_id_seq'::regclass);
--
-- Name: renamed_branch id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.renamed_branch ALTER COLUMN id SET DEFAULT nextval('public.renamed_branch_id_seq'::regclass);
--
-- Name: repo_archiver id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_archiver ALTER COLUMN id SET DEFAULT nextval('public.repo_archiver_id_seq'::regclass);
--
-- Name: repo_indexer_status id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_indexer_status ALTER COLUMN id SET DEFAULT nextval('public.repo_indexer_status_id_seq'::regclass);
--
-- Name: repo_license id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_license ALTER COLUMN id SET DEFAULT nextval('public.repo_license_id_seq'::regclass);
--
-- Name: repo_redirect id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_redirect ALTER COLUMN id SET DEFAULT nextval('public.repo_redirect_id_seq'::regclass);
--
-- Name: repo_transfer id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_transfer ALTER COLUMN id SET DEFAULT nextval('public.repo_transfer_id_seq'::regclass);
--
-- Name: repo_unit id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_unit ALTER COLUMN id SET DEFAULT nextval('public.repo_unit_id_seq'::regclass);
--
-- Name: repository id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repository ALTER COLUMN id SET DEFAULT nextval('public.repository_id_seq'::regclass);
--
-- Name: review id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.review ALTER COLUMN id SET DEFAULT nextval('public.review_id_seq'::regclass);
--
-- Name: review_state id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.review_state ALTER COLUMN id SET DEFAULT nextval('public.review_state_id_seq'::regclass);
--
-- Name: secret id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.secret ALTER COLUMN id SET DEFAULT nextval('public.secret_id_seq'::regclass);
--
-- Name: star id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.star ALTER COLUMN id SET DEFAULT nextval('public.star_id_seq'::regclass);
--
-- Name: stopwatch id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.stopwatch ALTER COLUMN id SET DEFAULT nextval('public.stopwatch_id_seq'::regclass);
--
-- Name: system_setting id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.system_setting ALTER COLUMN id SET DEFAULT nextval('public.system_setting_id_seq'::regclass);
--
-- Name: task id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.task ALTER COLUMN id SET DEFAULT nextval('public.task_id_seq'::regclass);
--
-- Name: team id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.team ALTER COLUMN id SET DEFAULT nextval('public.team_id_seq'::regclass);
--
-- Name: team_invite id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.team_invite ALTER COLUMN id SET DEFAULT nextval('public.team_invite_id_seq'::regclass);
--
-- Name: team_repo id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.team_repo ALTER COLUMN id SET DEFAULT nextval('public.team_repo_id_seq'::regclass);
--
-- Name: team_unit id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.team_unit ALTER COLUMN id SET DEFAULT nextval('public.team_unit_id_seq'::regclass);
--
-- Name: team_user id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.team_user ALTER COLUMN id SET DEFAULT nextval('public.team_user_id_seq'::regclass);
--
-- Name: topic id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.topic ALTER COLUMN id SET DEFAULT nextval('public.topic_id_seq'::regclass);
--
-- Name: tracked_time id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.tracked_time ALTER COLUMN id SET DEFAULT nextval('public.tracked_time_id_seq'::regclass);
--
-- Name: two_factor id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.two_factor ALTER COLUMN id SET DEFAULT nextval('public.two_factor_id_seq'::regclass);
--
-- Name: upload id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.upload ALTER COLUMN id SET DEFAULT nextval('public.upload_id_seq'::regclass);
--
-- Name: user id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public."user" ALTER COLUMN id SET DEFAULT nextval('public.user_id_seq'::regclass);
--
-- Name: user_badge id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.user_badge ALTER COLUMN id SET DEFAULT nextval('public.user_badge_id_seq'::regclass);
--
-- Name: user_blocking id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.user_blocking ALTER COLUMN id SET DEFAULT nextval('public.user_blocking_id_seq'::regclass);
--
-- Name: user_open_id id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.user_open_id ALTER COLUMN id SET DEFAULT nextval('public.user_open_id_id_seq'::regclass);
--
-- Name: user_redirect id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.user_redirect ALTER COLUMN id SET DEFAULT nextval('public.user_redirect_id_seq'::regclass);
--
-- Name: user_setting id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.user_setting ALTER COLUMN id SET DEFAULT nextval('public.user_setting_id_seq'::regclass);
--
-- Name: version id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.version ALTER COLUMN id SET DEFAULT nextval('public.version_id_seq'::regclass);
--
-- Name: watch id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.watch ALTER COLUMN id SET DEFAULT nextval('public.watch_id_seq'::regclass);
--
-- Name: webauthn_credential id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.webauthn_credential ALTER COLUMN id SET DEFAULT nextval('public.webauthn_credential_id_seq'::regclass);
--
-- Name: webhook id; Type: DEFAULT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.webhook ALTER COLUMN id SET DEFAULT nextval('public.webhook_id_seq'::regclass);
--
-- Data for Name: access; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.access (id, user_id, repo_id, mode) FROM stdin;
3 1 3 4
4 1 5 4
5 1 4 4
6 3 3 4
7 3 5 4
8 3 4 4
2 2 3 4
9 2 5 4
10 2 4 4
11 1 6 4
12 3 6 4
13 2 6 4
\.
--
-- Data for Name: access_token; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.access_token (id, uid, name, token_hash, token_salt, token_last_eight, scope, created_unix, updated_unix) FROM stdin;
5 1 b3MINI d8404e976d10cb0238f850d3209fa6e9cf55354023bf73f7cdf8703386f04168024bd8e9c92f786bff26959df06fdf203f4c 5qCWLEsehH 05a32bc4 all 1746255993 1746256163
4 1 b3GO 2fbf77bfb634d9f89093348283e25d68031bae737800fe4bde94d26c8c0eddab92e721359490a42ad5d6b87e985a01562308 Zo8MkhIwnv cc58ac11 all 1743232319 1747996573
1 1 gitnex-app-b31fd481-8fbd-463a-a8de-21e1193d173b d4c90a912a781c383732741972bb00d48dd36d745b94e9889bc24b6172f9ba202128be5c789ba621bbee0b63bf3386043c71 mz2BCCmlbS ce6fd0e4 all 1740344278 1743217270
3 1 b3share fa75f4b11f80323fdebf7a238b954bf23c0be251d2acfcff66edb675d4b1258410b96117180e88a30fbd58862eb8462a2ade W04yezvz2A 290e846c all 1741495229 1741495229
\.
--
-- Data for Name: action; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action (id, user_id, op_type, act_user_id, repo_id, comment_id, is_deleted, ref_name, is_private, content, created_unix) FROM stdin;
1 1 1 1 1 0 f t 1740324993
2 1 5 1 1 0 f refs/heads/ftimapple t 1740326693
3 1 5 1 1 0 f refs/heads/ftimapple t {"Commits":[],"HeadCommit":{"Sha1":"67ed4b887b78d3d75e355274853444de41d7263e","Message":"leaving corp cloud\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-15T18:22:14-07:00"},"CompareURL":"","Len":0} 1740326694
4 1 5 1 1 0 f refs/heads/home t 1740326697
5 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"b63d5366646043968188e3b0dfb69858a20bd00b","Message":"vault backup: 2025-02-15 20:15:18\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-15T20:15:18-07:00"},{"Sha1":"ccf955d9ec6ce5f76290c3f5772a18facd4c2935","Message":"Remove .obsidian and .smart-env from git tracking\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-15T19:24:06-07:00"},{"Sha1":"b532278375b6e37ae721355db30339889c19f24e","Message":"gitignore for obsidian\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-15T19:22:06-07:00"}],"HeadCommit":{"Sha1":"b63d5366646043968188e3b0dfb69858a20bd00b","Message":"vault backup: 2025-02-15 20:15:18\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-15T20:15:18-07:00"},"CompareURL":"bee8333/beebrain/compare/1c6235ff4b12ca672d26c60cea4de958f1539354...b63d5366646043968188e3b0dfb69858a20bd00b","Len":3} 1740326699
6 1 5 1 1 0 f refs/heads/obsidian-git t 1740326701
7 1 5 1 1 0 f refs/heads/obsidian-git t {"Commits":[{"Sha1":"4ab85ff71e5df571f664b2882312eae5077ade47","Message":"vault backup: 2025-02-15 19:17:51\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-15T19:17:51-07:00"},{"Sha1":"ddfded24c3819ce3bb7c7b041267e2c64a385857","Message":"vault backup: 2025-02-15 19:17:03\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-15T19:17:03-07:00"}],"HeadCommit":{"Sha1":"4ab85ff71e5df571f664b2882312eae5077ade47","Message":"vault backup: 2025-02-15 19:17:51\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-15T19:17:51-07:00"},"CompareURL":"bee8333/beebrain/compare/a8c99d68bb1c3df495b6b968e1a0b27bb436b584...4ab85ff71e5df571f664b2882312eae5077ade47","Len":2} 1740326703
8 1 1 1 2 0 f t 1740340558
9 1 5 1 2 0 f refs/heads/home t {"Commits":[{"Sha1":"f73c559340e80c8094f18d90e7ec22303f7fd6d9","Message":"clock\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-23T13:34:14-07:00"}],"HeadCommit":{"Sha1":"f73c559340e80c8094f18d90e7ec22303f7fd6d9","Message":"clock\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-23T13:34:14-07:00"},"CompareURL":"bee8333/b3stack/compare/8b61ab79076bda8fcaa7b9e74a2bc47956e49bd0...f73c559340e80c8094f18d90e7ec22303f7fd6d9","Len":1} 1740343095
10 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"fe99e9d7a80db221042383e3fa5b481b43b3220c","Message":"vault backup: 2025-02-23 13:53:50\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-23T13:53:50-07:00"}],"HeadCommit":{"Sha1":"fe99e9d7a80db221042383e3fa5b481b43b3220c","Message":"vault backup: 2025-02-23 13:53:50\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-23T13:53:50-07:00"},"CompareURL":"bee8333/beebrain/compare/b63d5366646043968188e3b0dfb69858a20bd00b...fe99e9d7a80db221042383e3fa5b481b43b3220c","Len":1} 1740344035
11 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"d15f6d877c0955da3e12d05b3aee6977a602d4a4","Message":"vault backup: 2025-02-23 14:14:03\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-23T14:14:03-07:00"}],"HeadCommit":{"Sha1":"d15f6d877c0955da3e12d05b3aee6977a602d4a4","Message":"vault backup: 2025-02-23 14:14:03\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-23T14:14:03-07:00"},"CompareURL":"bee8333/beebrain/compare/fe99e9d7a80db221042383e3fa5b481b43b3220c...d15f6d877c0955da3e12d05b3aee6977a602d4a4","Len":1} 1740345247
12 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"52b4c67c75bb6f49051a3a1844bd589f4de92f1e","Message":"vault backup: 2025-02-23 14:28:31\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-23T14:28:31-07:00"}],"HeadCommit":{"Sha1":"52b4c67c75bb6f49051a3a1844bd589f4de92f1e","Message":"vault backup: 2025-02-23 14:28:31\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-23T14:28:31-07:00"},"CompareURL":"bee8333/beebrain/compare/d15f6d877c0955da3e12d05b3aee6977a602d4a4...52b4c67c75bb6f49051a3a1844bd589f4de92f1e","Len":1} 1740346116
13 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"175b48ca44a336811501971171ea16a06a570c34","Message":"Os 25\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-02-23T23:20:41Z"}],"HeadCommit":{"Sha1":"175b48ca44a336811501971171ea16a06a570c34","Message":"Os 25\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-02-23T23:20:41Z"},"CompareURL":"bee8333/beebrain/compare/52b4c67c75bb6f49051a3a1844bd589f4de92f1e...175b48ca44a336811501971171ea16a06a570c34","Len":1} 1740352843
140 4 8 1 4 0 f f bee8333/gitea-docker 1743228557
14 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"6ce8f4485e3c51c79419661d572ae580cf00ed23","Message":"vault backup: 2025-02-28 21:20:01\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-28T21:20:01-07:00"},{"Sha1":"ea985f93611b60e9b305acc04e64995e1d40b455","Message":"vault backup: 2025-02-28 21:17:33\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-28T21:17:33-07:00"}],"HeadCommit":{"Sha1":"6ce8f4485e3c51c79419661d572ae580cf00ed23","Message":"vault backup: 2025-02-28 21:20:01\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-28T21:20:01-07:00"},"CompareURL":"bee8333/beebrain/compare/175b48ca44a336811501971171ea16a06a570c34...6ce8f4485e3c51c79419661d572ae580cf00ed23","Len":2} 1740802805
15 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0047dec551a9cff09d04cef8944ee1c040c1b7af","Message":"d apple notes commit\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-28T21:52:49-07:00"}],"HeadCommit":{"Sha1":"0047dec551a9cff09d04cef8944ee1c040c1b7af","Message":"d apple notes commit\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-28T21:52:49-07:00"},"CompareURL":"bee8333/beebrain/compare/6ce8f4485e3c51c79419661d572ae580cf00ed23...0047dec551a9cff09d04cef8944ee1c040c1b7af","Len":1} 1740804835
16 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"95fbfccecc1bfcfb0e6b8621481cdf93b59fb2cd","Message":"vault backup: 2025-02-28 22:08:32\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-28T22:08:32-07:00"}],"HeadCommit":{"Sha1":"95fbfccecc1bfcfb0e6b8621481cdf93b59fb2cd","Message":"vault backup: 2025-02-28 22:08:32\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-02-28T22:08:32-07:00"},"CompareURL":"bee8333/beebrain/compare/0047dec551a9cff09d04cef8944ee1c040c1b7af...95fbfccecc1bfcfb0e6b8621481cdf93b59fb2cd","Len":1} 1740805716
17 1 5 1 1 0 f refs/heads/home-remote t 1740849276
18 1 5 1 1 0 f refs/heads/home-remote t {"Commits":[{"Sha1":"389d72af1ff2629e1573e76fdea30ffd2949cbe6","Message":"Add .git_backup/ to gitignore\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T10:14:32-07:00"}],"HeadCommit":{"Sha1":"389d72af1ff2629e1573e76fdea30ffd2949cbe6","Message":"Add .git_backup/ to gitignore\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T10:14:32-07:00"},"CompareURL":"bee8333/beebrain/compare/95fbfccecc1bfcfb0e6b8621481cdf93b59fb2cd...389d72af1ff2629e1573e76fdea30ffd2949cbe6","Len":1} 1740849276
19 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"389d72af1ff2629e1573e76fdea30ffd2949cbe6","Message":"Add .git_backup/ to gitignore\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T10:14:32-07:00"}],"HeadCommit":{"Sha1":"389d72af1ff2629e1573e76fdea30ffd2949cbe6","Message":"Add .git_backup/ to gitignore\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T10:14:32-07:00"},"CompareURL":"bee8333/beebrain/compare/95fbfccecc1bfcfb0e6b8621481cdf93b59fb2cd...389d72af1ff2629e1573e76fdea30ffd2949cbe6","Len":1} 1740849289
20 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"92823c719a1555a226cf743a5647af9dc102bfba","Message":"vault backup: 2025-03-01 10:16:30\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T10:16:30-07:00"}],"HeadCommit":{"Sha1":"92823c719a1555a226cf743a5647af9dc102bfba","Message":"vault backup: 2025-03-01 10:16:30\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T10:16:30-07:00"},"CompareURL":"bee8333/beebrain/compare/389d72af1ff2629e1573e76fdea30ffd2949cbe6...92823c719a1555a226cf743a5647af9dc102bfba","Len":1} 1740849395
21 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"87d7e02854500c4027416ef52c8a90e528f9a671","Message":"better init\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T10:33:47-07:00"}],"HeadCommit":{"Sha1":"87d7e02854500c4027416ef52c8a90e528f9a671","Message":"better init\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T10:33:47-07:00"},"CompareURL":"bee8333/beebrain/compare/92823c719a1555a226cf743a5647af9dc102bfba...87d7e02854500c4027416ef52c8a90e528f9a671","Len":1} 1740850430
22 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"5e2ea3985ca5a0e09dcdbdde9390073173d70c25","Message":"vault backup: 2025-03-01 10:36:40\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T10:36:40-07:00"}],"HeadCommit":{"Sha1":"5e2ea3985ca5a0e09dcdbdde9390073173d70c25","Message":"vault backup: 2025-03-01 10:36:40\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T10:36:40-07:00"},"CompareURL":"bee8333/beebrain/compare/87d7e02854500c4027416ef52c8a90e528f9a671...5e2ea3985ca5a0e09dcdbdde9390073173d70c25","Len":1} 1740850603
23 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"1ced4e90e2b4ec5b0bac94c5d7d98312d23d9dc7","Message":"vault backup: 2025-03-01 11:09:41\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T11:09:41-07:00"}],"HeadCommit":{"Sha1":"1ced4e90e2b4ec5b0bac94c5d7d98312d23d9dc7","Message":"vault backup: 2025-03-01 11:09:41\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T11:09:41-07:00"},"CompareURL":"bee8333/beebrain/compare/5e2ea3985ca5a0e09dcdbdde9390073173d70c25...1ced4e90e2b4ec5b0bac94c5d7d98312d23d9dc7","Len":1} 1740852586
24 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"d31e36fdd1a9acb252ba78b3a4bdb0ffd1b95ddd","Message":"vault backup: 2025-03-01 11:09:46\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T11:09:46-07:00"}],"HeadCommit":{"Sha1":"d31e36fdd1a9acb252ba78b3a4bdb0ffd1b95ddd","Message":"vault backup: 2025-03-01 11:09:46\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T11:09:46-07:00"},"CompareURL":"bee8333/beebrain/compare/1ced4e90e2b4ec5b0bac94c5d7d98312d23d9dc7...d31e36fdd1a9acb252ba78b3a4bdb0ffd1b95ddd","Len":1} 1740852589
25 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"1c832c4c62680d4ed99717b228e62f5adcac3f2b","Message":"vault backup: 2025-03-01 13:51:29\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T13:51:29-07:00"}],"HeadCommit":{"Sha1":"1c832c4c62680d4ed99717b228e62f5adcac3f2b","Message":"vault backup: 2025-03-01 13:51:29\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T13:51:29-07:00"},"CompareURL":"bee8333/beebrain/compare/d31e36fdd1a9acb252ba78b3a4bdb0ffd1b95ddd...1c832c4c62680d4ed99717b228e62f5adcac3f2b","Len":1} 1740862294
26 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"76ba592088191438e6f755dba5124c29f0b0a35a","Message":"vault backup: 2025-03-01 14:20:20\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T14:20:20-07:00"}],"HeadCommit":{"Sha1":"76ba592088191438e6f755dba5124c29f0b0a35a","Message":"vault backup: 2025-03-01 14:20:20\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T14:20:20-07:00"},"CompareURL":"bee8333/beebrain/compare/1c832c4c62680d4ed99717b228e62f5adcac3f2b...76ba592088191438e6f755dba5124c29f0b0a35a","Len":1} 1740864026
27 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"5914ca1928936c3c9cae6d078c010d4e1eb1791e","Message":"vault backup: 2025-03-01 14:31:27\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T14:31:27-07:00"}],"HeadCommit":{"Sha1":"5914ca1928936c3c9cae6d078c010d4e1eb1791e","Message":"vault backup: 2025-03-01 14:31:27\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T14:31:27-07:00"},"CompareURL":"bee8333/beebrain/compare/76ba592088191438e6f755dba5124c29f0b0a35a...5914ca1928936c3c9cae6d078c010d4e1eb1791e","Len":1} 1740864692
28 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"bc4ce4034e42860320697aa236677950aff5f944","Message":"vault backup: 2025-03-01 14:59:33\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T14:59:33-07:00"}],"HeadCommit":{"Sha1":"bc4ce4034e42860320697aa236677950aff5f944","Message":"vault backup: 2025-03-01 14:59:33\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T14:59:33-07:00"},"CompareURL":"bee8333/beebrain/compare/5914ca1928936c3c9cae6d078c010d4e1eb1791e...bc4ce4034e42860320697aa236677950aff5f944","Len":1} 1740866378
29 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"b21a52c1930fd8f9c215c277a38795194e6e2382","Message":"vault backup: 2025-03-01 15:09:18\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T15:09:18-07:00"}],"HeadCommit":{"Sha1":"b21a52c1930fd8f9c215c277a38795194e6e2382","Message":"vault backup: 2025-03-01 15:09:18\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T15:09:18-07:00"},"CompareURL":"bee8333/beebrain/compare/bc4ce4034e42860320697aa236677950aff5f944...b21a52c1930fd8f9c215c277a38795194e6e2382","Len":1} 1740866963
30 1 1 1 3 0 f f 1740870466
31 1 5 1 3 0 f refs/heads/master f {"Commits":[{"Sha1":"3cf0e16c3562e0e40bbdb99de418bf12cb032063","Message":"pushup\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T16:11:41-07:00"},{"Sha1":"0bff96af77b1bce97395a35c6b18951c16af5bf2","Message":"pushup\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T16:09:36-07:00"}],"HeadCommit":{"Sha1":"3cf0e16c3562e0e40bbdb99de418bf12cb032063","Message":"pushup\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T16:11:41-07:00"},"CompareURL":"bee8333/bounce/compare/8835f64c987b98d5a887476d1099653cff5962e8...3cf0e16c3562e0e40bbdb99de418bf12cb032063","Len":2} 1740870745
32 1 5 1 3 0 f refs/heads/b3_animate f 1740873372
33 1 5 1 3 0 f refs/heads/b3_animate f {"Commits":[{"Sha1":"10bcc9b163f6dd3afccc473fac887e82e15a97dc","Message":"readme+\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T16:55:39-07:00"},{"Sha1":"c6b08a089d5e4b7f876aa6c9d098d7c7beebd52e","Message":"Provided modular architecture for animated bouncing ball analysis\\n\\n- Organized project into src directory with subpackages (analysis, data, visualization, utils)\\n- Added comprehensive README with project overview and structure\\n- Implemented data loading, bounce detection, and visualization modules\\n- Created example scripts and Jupyter notebook for project usage\\n- Added requirements.txt for dependency management\\n- Included output files for different ball types (golf, lacrosse, metal)\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T16:55:29-07:00"}],"HeadCommit":{"Sha1":"10bcc9b163f6dd3afccc473fac887e82e15a97dc","Message":"readme+\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T16:55:39-07:00"},"CompareURL":"bee8333/bounce/compare/3cf0e16c3562e0e40bbdb99de418bf12cb032063...10bcc9b163f6dd3afccc473fac887e82e15a97dc","Len":2} 1740873372
34 1 7 1 3 0 f f 1|Bounce+ 1740873523
35 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"d992dac4846a394dae53b2c3e2adcb3c6a29d783","Message":"vault backup: 2025-03-01 17:01:34\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T17:01:34-07:00"}],"HeadCommit":{"Sha1":"d992dac4846a394dae53b2c3e2adcb3c6a29d783","Message":"vault backup: 2025-03-01 17:01:34\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T17:01:34-07:00"},"CompareURL":"bee8333/beebrain/compare/b21a52c1930fd8f9c215c277a38795194e6e2382...d992dac4846a394dae53b2c3e2adcb3c6a29d783","Len":1} 1740873701
36 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"133be45ebac35f997c6f65f54db83b28b98f1722","Message":"vault backup: 2025-03-01 17:48:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T17:48:10-07:00"}],"HeadCommit":{"Sha1":"133be45ebac35f997c6f65f54db83b28b98f1722","Message":"vault backup: 2025-03-01 17:48:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T17:48:10-07:00"},"CompareURL":"bee8333/beebrain/compare/d992dac4846a394dae53b2c3e2adcb3c6a29d783...133be45ebac35f997c6f65f54db83b28b98f1722","Len":1} 1740876494
37 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"1c8cf392fca20f1f9083d3c4feda0115342efb83","Message":"vault backup: 2025-03-01 17:59:02\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T17:59:02-07:00"}],"HeadCommit":{"Sha1":"1c8cf392fca20f1f9083d3c4feda0115342efb83","Message":"vault backup: 2025-03-01 17:59:02\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T17:59:02-07:00"},"CompareURL":"bee8333/beebrain/compare/133be45ebac35f997c6f65f54db83b28b98f1722...1c8cf392fca20f1f9083d3c4feda0115342efb83","Len":1} 1740877147
38 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"f45f2b297700c5ed6c0061a091988dc627699892","Message":"vault backup: 2025-03-01 18:05:25\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T18:05:25-07:00"}],"HeadCommit":{"Sha1":"f45f2b297700c5ed6c0061a091988dc627699892","Message":"vault backup: 2025-03-01 18:05:25\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T18:05:25-07:00"},"CompareURL":"bee8333/beebrain/compare/1c8cf392fca20f1f9083d3c4feda0115342efb83...f45f2b297700c5ed6c0061a091988dc627699892","Len":1} 1740877531
39 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"c9fcdf25da5a5287c99100b1c6b6e708576ec450","Message":"vault backup: 2025-03-01 18:23:43\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T18:23:43-07:00"}],"HeadCommit":{"Sha1":"c9fcdf25da5a5287c99100b1c6b6e708576ec450","Message":"vault backup: 2025-03-01 18:23:43\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T18:23:43-07:00"},"CompareURL":"bee8333/beebrain/compare/f45f2b297700c5ed6c0061a091988dc627699892...c9fcdf25da5a5287c99100b1c6b6e708576ec450","Len":1} 1740878629
40 1 1 1 4 0 f f 1740926103
41 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"490ab2d00f28180eb9bc5499fab9f3b392cfc9a6","Message":"today\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T08:57:55-07:00"}],"HeadCommit":{"Sha1":"490ab2d00f28180eb9bc5499fab9f3b392cfc9a6","Message":"today\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T08:57:55-07:00"},"CompareURL":"bee8333/beebrain/compare/c9fcdf25da5a5287c99100b1c6b6e708576ec450...490ab2d00f28180eb9bc5499fab9f3b392cfc9a6","Len":1} 1740931080
42 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"a030dc998a89781ae960b19ad76dc62b1377937a","Message":"vault backup: 2025-03-02 09:44:45\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T09:44:45-07:00"}],"HeadCommit":{"Sha1":"a030dc998a89781ae960b19ad76dc62b1377937a","Message":"vault backup: 2025-03-02 09:44:45\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T09:44:45-07:00"},"CompareURL":"bee8333/beebrain/compare/490ab2d00f28180eb9bc5499fab9f3b392cfc9a6...a030dc998a89781ae960b19ad76dc62b1377937a","Len":1} 1740933893
43 1 5 1 4 0 f refs/heads/main f 1740939637
44 1 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"5084a0c98f148408f27f8d5c1f14148ca4dbf730","Message":"Add comprehensive backup system for Gitea database\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-01T23:28:11-07:00"},{"Sha1":"dcc2dda7695b6ab4915704e16cbc6b30826808bc","Message":"running publically\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-02-15T15:51:50-08:00"},{"Sha1":"2120ac81ad2b2d5b737fb023b7667313d6588296","Message":"Initial commit of gitea-docker configuration\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-02-15T14:40:23-08:00"}],"HeadCommit":{"Sha1":"5084a0c98f148408f27f8d5c1f14148ca4dbf730","Message":"Add comprehensive backup system for Gitea database\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-01T23:28:11-07:00"},"CompareURL":"","Len":3} 1740939638
62 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"f95914cca59ac89f3762f7b935d69e88579d6bca","Message":"mas\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:56:25-07:00"}],"HeadCommit":{"Sha1":"f95914cca59ac89f3762f7b935d69e88579d6bca","Message":"mas\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:56:25-07:00"},"CompareURL":"bee8333/beebrain/compare/0d7b94399d7ac9444b36bf81fcf9861b4a889f4c...f95914cca59ac89f3762f7b935d69e88579d6bca","Len":1} 1741438590
45 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"f285819ff99800c954c947e52e9c9fdbd96e8a73","Message":"vault backup: 2025-03-02 14:06:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T14:06:10-07:00"}],"HeadCommit":{"Sha1":"f285819ff99800c954c947e52e9c9fdbd96e8a73","Message":"vault backup: 2025-03-02 14:06:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T14:06:10-07:00"},"CompareURL":"bee8333/beebrain/compare/a030dc998a89781ae960b19ad76dc62b1377937a...f285819ff99800c954c947e52e9c9fdbd96e8a73","Len":1} 1740949580
46 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"9765f3da3dbe86614e93ef258668872b1dd1553e","Message":"vault backup: 2025-03-02 15:15:45\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T15:15:45-07:00"}],"HeadCommit":{"Sha1":"9765f3da3dbe86614e93ef258668872b1dd1553e","Message":"vault backup: 2025-03-02 15:15:45\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T15:15:45-07:00"},"CompareURL":"bee8333/beebrain/compare/f285819ff99800c954c947e52e9c9fdbd96e8a73...9765f3da3dbe86614e93ef258668872b1dd1553e","Len":1} 1740953776
47 2 11 2 3 0 f f 1|Bounce+ 1740957488
48 1 11 2 3 0 f f 1|Bounce+ 1740957488
49 2 5 2 3 0 f refs/heads/master f {"Commits":[{"Sha1":"ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c","Message":"Merge pull request 'Bounce+' (#1) from b3_animate into master\\n\\nReviewed-on: https://bee8333.ddns.net/bee8333/bounce/pulls/1\\n","AuthorEmail":"rachelawhite53@gmail.com","AuthorName":"rachelwhite10","CommitterEmail":"rachelawhite53@gmail.com","CommitterName":"rachelwhite10","Timestamp":"2025-03-02T23:18:06Z"},{"Sha1":"10bcc9b163f6dd3afccc473fac887e82e15a97dc","Message":"readme+\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T16:55:39-07:00"},{"Sha1":"c6b08a089d5e4b7f876aa6c9d098d7c7beebd52e","Message":"Provided modular architecture for animated bouncing ball analysis\\n\\n- Organized project into src directory with subpackages (analysis, data, visualization, utils)\\n- Added comprehensive README with project overview and structure\\n- Implemented data loading, bounce detection, and visualization modules\\n- Created example scripts and Jupyter notebook for project usage\\n- Added requirements.txt for dependency management\\n- Included output files for different ball types (golf, lacrosse, metal)\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T16:55:29-07:00"}],"HeadCommit":{"Sha1":"ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c","Message":"Merge pull request 'Bounce+' (#1) from b3_animate into master\\n\\nReviewed-on: https://bee8333.ddns.net/bee8333/bounce/pulls/1\\n","AuthorEmail":"rachelawhite53@gmail.com","AuthorName":"rachelwhite10","CommitterEmail":"rachelawhite53@gmail.com","CommitterName":"rachelwhite10","Timestamp":"2025-03-02T23:18:06Z"},"CompareURL":"bee8333/bounce/compare/3cf0e16c3562e0e40bbdb99de418bf12cb032063...ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c","Len":3} 1740957489
50 1 5 2 3 0 f refs/heads/master f {"Commits":[{"Sha1":"ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c","Message":"Merge pull request 'Bounce+' (#1) from b3_animate into master\\n\\nReviewed-on: https://bee8333.ddns.net/bee8333/bounce/pulls/1\\n","AuthorEmail":"rachelawhite53@gmail.com","AuthorName":"rachelwhite10","CommitterEmail":"rachelawhite53@gmail.com","CommitterName":"rachelwhite10","Timestamp":"2025-03-02T23:18:06Z"},{"Sha1":"10bcc9b163f6dd3afccc473fac887e82e15a97dc","Message":"readme+\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T16:55:39-07:00"},{"Sha1":"c6b08a089d5e4b7f876aa6c9d098d7c7beebd52e","Message":"Provided modular architecture for animated bouncing ball analysis\\n\\n- Organized project into src directory with subpackages (analysis, data, visualization, utils)\\n- Added comprehensive README with project overview and structure\\n- Implemented data loading, bounce detection, and visualization modules\\n- Created example scripts and Jupyter notebook for project usage\\n- Added requirements.txt for dependency management\\n- Included output files for different ball types (golf, lacrosse, metal)\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-01T16:55:29-07:00"}],"HeadCommit":{"Sha1":"ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c","Message":"Merge pull request 'Bounce+' (#1) from b3_animate into master\\n\\nReviewed-on: https://bee8333.ddns.net/bee8333/bounce/pulls/1\\n","AuthorEmail":"rachelawhite53@gmail.com","AuthorName":"rachelwhite10","CommitterEmail":"rachelawhite53@gmail.com","CommitterName":"rachelwhite10","Timestamp":"2025-03-02T23:18:06Z"},"CompareURL":"bee8333/bounce/compare/3cf0e16c3562e0e40bbdb99de418bf12cb032063...ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c","Len":3} 1740957489
51 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"17392293af33ec3bb5f51605f184ed720a23bfed","Message":"vault backup: 2025-03-02 18:49:52\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T18:49:52-07:00"}],"HeadCommit":{"Sha1":"17392293af33ec3bb5f51605f184ed720a23bfed","Message":"vault backup: 2025-03-02 18:49:52\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T18:49:52-07:00"},"CompareURL":"bee8333/beebrain/compare/9765f3da3dbe86614e93ef258668872b1dd1553e...17392293af33ec3bb5f51605f184ed720a23bfed","Len":1} 1740966605
52 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"23d915b4b0d93092201d17d05235fdb5436c7732","Message":"mas\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T19:06:44-07:00"}],"HeadCommit":{"Sha1":"23d915b4b0d93092201d17d05235fdb5436c7732","Message":"mas\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-02T19:06:44-07:00"},"CompareURL":"bee8333/beebrain/compare/17392293af33ec3bb5f51605f184ed720a23bfed...23d915b4b0d93092201d17d05235fdb5436c7732","Len":1} 1740967621
53 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"93ba018c5cf07fb4a133cd958f88214fa308857e","Message":"vault backup: 2025-03-04 19:19:41\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-04T19:19:42-07:00"}],"HeadCommit":{"Sha1":"93ba018c5cf07fb4a133cd958f88214fa308857e","Message":"vault backup: 2025-03-04 19:19:41\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-04T19:19:42-07:00"},"CompareURL":"bee8333/beebrain/compare/23d915b4b0d93092201d17d05235fdb5436c7732...93ba018c5cf07fb4a133cd958f88214fa308857e","Len":1} 1741141344
54 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"a4418db44aa33daca239f0a8a0c89771d0e6700e","Message":"vault backup: 2025-03-04 19:22:25\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-04T19:22:25-07:00"}],"HeadCommit":{"Sha1":"a4418db44aa33daca239f0a8a0c89771d0e6700e","Message":"vault backup: 2025-03-04 19:22:25\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-04T19:22:25-07:00"},"CompareURL":"bee8333/beebrain/compare/93ba018c5cf07fb4a133cd958f88214fa308857e...a4418db44aa33daca239f0a8a0c89771d0e6700e","Len":1} 1741141351
55 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"b517cf97b01d10bfda01a04de21a79f35b0afe20","Message":"vault backup: 2025-03-04 20:52:50\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-04T20:52:50-07:00"}],"HeadCommit":{"Sha1":"b517cf97b01d10bfda01a04de21a79f35b0afe20","Message":"vault backup: 2025-03-04 20:52:50\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-04T20:52:50-07:00"},"CompareURL":"bee8333/beebrain/compare/a4418db44aa33daca239f0a8a0c89771d0e6700e...b517cf97b01d10bfda01a04de21a79f35b0afe20","Len":1} 1741146775
56 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"daecedd5081ddbe0017bf835d386568340514f2f","Message":"vault backup: 2025-03-04 23:35:05\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-04T23:35:05-07:00"}],"HeadCommit":{"Sha1":"daecedd5081ddbe0017bf835d386568340514f2f","Message":"vault backup: 2025-03-04 23:35:05\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-04T23:35:05-07:00"},"CompareURL":"bee8333/beebrain/compare/b517cf97b01d10bfda01a04de21a79f35b0afe20...daecedd5081ddbe0017bf835d386568340514f2f","Len":1} 1741156522
57 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0654407a18fe5fa69efb654ac58674e2d6a0a6d8","Message":"Update README with repository location change\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:02:35-07:00"}],"HeadCommit":{"Sha1":"0654407a18fe5fa69efb654ac58674e2d6a0a6d8","Message":"Update README with repository location change\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:02:35-07:00"},"CompareURL":"bee8333/beebrain/compare/daecedd5081ddbe0017bf835d386568340514f2f...0654407a18fe5fa69efb654ac58674e2d6a0a6d8","Len":1} 1741435361
58 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"78aafab294cfb7730761df5c60b87d0a107fb9b6","Message":"vault backup: 2025-03-08 05:05:43\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:05:43-07:00"}],"HeadCommit":{"Sha1":"78aafab294cfb7730761df5c60b87d0a107fb9b6","Message":"vault backup: 2025-03-08 05:05:43\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:05:43-07:00"},"CompareURL":"bee8333/beebrain/compare/0654407a18fe5fa69efb654ac58674e2d6a0a6d8...78aafab294cfb7730761df5c60b87d0a107fb9b6","Len":1} 1741435548
59 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"5571a4c9d8fbb93c1f11709504ddba4602772de2","Message":"vault backup: 2025-03-08 05:13:50\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:13:50-07:00"}],"HeadCommit":{"Sha1":"5571a4c9d8fbb93c1f11709504ddba4602772de2","Message":"vault backup: 2025-03-08 05:13:50\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:13:50-07:00"},"CompareURL":"bee8333/beebrain/compare/78aafab294cfb7730761df5c60b87d0a107fb9b6...5571a4c9d8fbb93c1f11709504ddba4602772de2","Len":1} 1741436035
60 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"defa7c94ec234a724699ade029365467b0060798","Message":"vault backup: 2025-03-08 05:47:15\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:47:15-07:00"}],"HeadCommit":{"Sha1":"defa7c94ec234a724699ade029365467b0060798","Message":"vault backup: 2025-03-08 05:47:15\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:47:15-07:00"},"CompareURL":"bee8333/beebrain/compare/5571a4c9d8fbb93c1f11709504ddba4602772de2...defa7c94ec234a724699ade029365467b0060798","Len":1} 1741438041
61 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0d7b94399d7ac9444b36bf81fcf9861b4a889f4c","Message":"backup\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:52:06-07:00"}],"HeadCommit":{"Sha1":"0d7b94399d7ac9444b36bf81fcf9861b4a889f4c","Message":"backup\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T05:52:06-07:00"},"CompareURL":"bee8333/beebrain/compare/defa7c94ec234a724699ade029365467b0060798...0d7b94399d7ac9444b36bf81fcf9861b4a889f4c","Len":1} 1741438341
63 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"091290c24db63f0d5b520f1501f03d3508843a35","Message":"anotha\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T06:00:04-07:00"}],"HeadCommit":{"Sha1":"091290c24db63f0d5b520f1501f03d3508843a35","Message":"anotha\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T06:00:04-07:00"},"CompareURL":"bee8333/beebrain/compare/f95914cca59ac89f3762f7b935d69e88579d6bca...091290c24db63f0d5b520f1501f03d3508843a35","Len":1} 1741438811
65 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0d8507179b7dab048ebcaf87a139f695c405bee8","Message":"d obdisian sync\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T06:10:34-07:00"}],"HeadCommit":{"Sha1":"0d8507179b7dab048ebcaf87a139f695c405bee8","Message":"d obdisian sync\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T06:10:34-07:00"},"CompareURL":"bee8333/beebrain/compare/115ac9e2de3619eef36943840c06785b97f8ac5e...0d8507179b7dab048ebcaf87a139f695c405bee8","Len":1} 1741439452
68 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"a7f952bc1a749d1d32c9fe8c8d9d6309acbf7959","Message":"check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T07:11:57-07:00"}],"HeadCommit":{"Sha1":"a7f952bc1a749d1d32c9fe8c8d9d6309acbf7959","Message":"check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T07:11:57-07:00"},"CompareURL":"bee8333/beebrain/compare/8190ea7df5d7fab019bd01e3a2310d3c74f3021c...a7f952bc1a749d1d32c9fe8c8d9d6309acbf7959","Len":1} 1741443146
64 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"115ac9e2de3619eef36943840c06785b97f8ac5e","Message":"maas\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T06:03:37-07:00"}],"HeadCommit":{"Sha1":"115ac9e2de3619eef36943840c06785b97f8ac5e","Message":"maas\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T06:03:37-07:00"},"CompareURL":"bee8333/beebrain/compare/091290c24db63f0d5b520f1501f03d3508843a35...115ac9e2de3619eef36943840c06785b97f8ac5e","Len":1} 1741439024
66 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"7e0f763666bcd591d5022f77ba434251022d4597","Message":"vault backup: 2025-03-08 06:27:30\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T06:27:30-07:00"}],"HeadCommit":{"Sha1":"7e0f763666bcd591d5022f77ba434251022d4597","Message":"vault backup: 2025-03-08 06:27:30\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T06:27:30-07:00"},"CompareURL":"bee8333/beebrain/compare/0d8507179b7dab048ebcaf87a139f695c405bee8...7e0f763666bcd591d5022f77ba434251022d4597","Len":1} 1741440454
67 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"8190ea7df5d7fab019bd01e3a2310d3c74f3021c","Message":"vault backup: 2025-03-08 06:40:39\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T06:40:39-07:00"}],"HeadCommit":{"Sha1":"8190ea7df5d7fab019bd01e3a2310d3c74f3021c","Message":"vault backup: 2025-03-08 06:40:39\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T06:40:39-07:00"},"CompareURL":"bee8333/beebrain/compare/7e0f763666bcd591d5022f77ba434251022d4597...8190ea7df5d7fab019bd01e3a2310d3c74f3021c","Len":1} 1741441243
69 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"ee2f252d5ef115b504dd17a9deac02d69f1be741","Message":"check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T09:19:23-07:00"}],"HeadCommit":{"Sha1":"ee2f252d5ef115b504dd17a9deac02d69f1be741","Message":"check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T09:19:23-07:00"},"CompareURL":"bee8333/beebrain/compare/a7f952bc1a749d1d32c9fe8c8d9d6309acbf7959...ee2f252d5ef115b504dd17a9deac02d69f1be741","Len":1} 1741450772
70 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0da5359fb48fbd98dccc53fb2b4d07342e49faaf","Message":"vault backup: 2025-03-08 11:28:44\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T11:28:44-07:00"}],"HeadCommit":{"Sha1":"0da5359fb48fbd98dccc53fb2b4d07342e49faaf","Message":"vault backup: 2025-03-08 11:28:44\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T11:28:44-07:00"},"CompareURL":"bee8333/beebrain/compare/ee2f252d5ef115b504dd17a9deac02d69f1be741...0da5359fb48fbd98dccc53fb2b4d07342e49faaf","Len":1} 1741458530
71 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"b8165cd34b3eed47362524ba2f9416a68969b85c","Message":"vault backup: 2025-03-08 12:02:18\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:02:18-07:00"}],"HeadCommit":{"Sha1":"b8165cd34b3eed47362524ba2f9416a68969b85c","Message":"vault backup: 2025-03-08 12:02:18\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:02:18-07:00"},"CompareURL":"bee8333/beebrain/compare/0da5359fb48fbd98dccc53fb2b4d07342e49faaf...b8165cd34b3eed47362524ba2f9416a68969b85c","Len":1} 1741460544
72 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"4719006702f2ec3f188d9230c8065cc63dde2826","Message":"vault backup: 2025-03-08 12:09:08 library\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:09:08-07:00"}],"HeadCommit":{"Sha1":"4719006702f2ec3f188d9230c8065cc63dde2826","Message":"vault backup: 2025-03-08 12:09:08 library\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:09:08-07:00"},"CompareURL":"bee8333/beebrain/compare/b8165cd34b3eed47362524ba2f9416a68969b85c...4719006702f2ec3f188d9230c8065cc63dde2826","Len":1} 1741460957
73 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"b1318a4aa428a8ebddde7601a97836804856f793","Message":"vault backup: 2025-03-08 12:21:36\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:21:36-07:00"}],"HeadCommit":{"Sha1":"b1318a4aa428a8ebddde7601a97836804856f793","Message":"vault backup: 2025-03-08 12:21:36\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:21:36-07:00"},"CompareURL":"bee8333/beebrain/compare/4719006702f2ec3f188d9230c8065cc63dde2826...b1318a4aa428a8ebddde7601a97836804856f793","Len":1} 1741461745
74 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"2c55fb357a4995dcfdd29f24610ce6dd0de3e9b6","Message":"vault backup: 2025-03-08 12:25:18\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:25:18-07:00"}],"HeadCommit":{"Sha1":"2c55fb357a4995dcfdd29f24610ce6dd0de3e9b6","Message":"vault backup: 2025-03-08 12:25:18\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:25:18-07:00"},"CompareURL":"bee8333/beebrain/compare/b1318a4aa428a8ebddde7601a97836804856f793...2c55fb357a4995dcfdd29f24610ce6dd0de3e9b6","Len":1} 1741461924
75 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"d7bee1295639fc9f0b25a93593ec17a8f7e31261","Message":"out here\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:53:50-07:00"}],"HeadCommit":{"Sha1":"d7bee1295639fc9f0b25a93593ec17a8f7e31261","Message":"out here\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:53:50-07:00"},"CompareURL":"bee8333/beebrain/compare/2c55fb357a4995dcfdd29f24610ce6dd0de3e9b6...d7bee1295639fc9f0b25a93593ec17a8f7e31261","Len":1} 1741463675
76 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"7162176031fa340a1d429008088fba40f1c9eb6c","Message":"vault backup: 2025-03-08 12:58:52\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:58:52-07:00"}],"HeadCommit":{"Sha1":"7162176031fa340a1d429008088fba40f1c9eb6c","Message":"vault backup: 2025-03-08 12:58:52\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T12:58:52-07:00"},"CompareURL":"bee8333/beebrain/compare/d7bee1295639fc9f0b25a93593ec17a8f7e31261...7162176031fa340a1d429008088fba40f1c9eb6c","Len":1} 1741463938
77 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"f10a96da8e3b27b54bb153ad754ace059052722b","Message":"vault backup: 2025-03-08 13:00:21\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T13:00:21-07:00"}],"HeadCommit":{"Sha1":"f10a96da8e3b27b54bb153ad754ace059052722b","Message":"vault backup: 2025-03-08 13:00:21\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T13:00:21-07:00"},"CompareURL":"bee8333/beebrain/compare/7162176031fa340a1d429008088fba40f1c9eb6c...f10a96da8e3b27b54bb153ad754ace059052722b","Len":1} 1741464027
78 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"03c8d2dbe02cdd4980840d474fa963418832a899","Message":"vault backup: 2025-03-08 13:05:57\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T13:05:57-07:00"}],"HeadCommit":{"Sha1":"03c8d2dbe02cdd4980840d474fa963418832a899","Message":"vault backup: 2025-03-08 13:05:57\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T13:05:57-07:00"},"CompareURL":"bee8333/beebrain/compare/f10a96da8e3b27b54bb153ad754ace059052722b...03c8d2dbe02cdd4980840d474fa963418832a899","Len":1} 1741464362
79 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"3bf316cf1082e4cb8118f2a80de84b38631930e8","Message":"vault backup: 2025-03-08 13:17:44\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T13:17:44-07:00"}],"HeadCommit":{"Sha1":"3bf316cf1082e4cb8118f2a80de84b38631930e8","Message":"vault backup: 2025-03-08 13:17:44\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T13:17:44-07:00"},"CompareURL":"bee8333/beebrain/compare/03c8d2dbe02cdd4980840d474fa963418832a899...3bf316cf1082e4cb8118f2a80de84b38631930e8","Len":1} 1741465072
80 1 1 1 5 0 f f 1741494653
81 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"269481cd65d9ad0fa5559399d6ae2915eb12ef32","Message":"action?\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T21:32:57-07:00"}],"HeadCommit":{"Sha1":"269481cd65d9ad0fa5559399d6ae2915eb12ef32","Message":"action?\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T21:32:57-07:00"},"CompareURL":"bee8333/beebrain/compare/3bf316cf1082e4cb8118f2a80de84b38631930e8...269481cd65d9ad0fa5559399d6ae2915eb12ef32","Len":1} 1741494784
82 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"e2e9adcd9b90f50132671c7442953a84a031088f","Message":"maass\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T21:41:42-07:00"}],"HeadCommit":{"Sha1":"e2e9adcd9b90f50132671c7442953a84a031088f","Message":"maass\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T21:41:42-07:00"},"CompareURL":"bee8333/beebrain/compare/269481cd65d9ad0fa5559399d6ae2915eb12ef32...e2e9adcd9b90f50132671c7442953a84a031088f","Len":1} 1741495307
83 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"88f66fd3481a0fb836f9437d57747c78609b4f71","Message":"attempt\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T21:43:47-07:00"}],"HeadCommit":{"Sha1":"88f66fd3481a0fb836f9437d57747c78609b4f71","Message":"attempt\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T21:43:47-07:00"},"CompareURL":"bee8333/beebrain/compare/e2e9adcd9b90f50132671c7442953a84a031088f...88f66fd3481a0fb836f9437d57747c78609b4f71","Len":1} 1741495432
84 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"1b220afdcf0bd85fc287d47d32074001aa1cc00d","Message":"vault backup: 2025-03-08 21:51:58\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T21:51:58-07:00"}],"HeadCommit":{"Sha1":"1b220afdcf0bd85fc287d47d32074001aa1cc00d","Message":"vault backup: 2025-03-08 21:51:58\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T21:51:58-07:00"},"CompareURL":"bee8333/beebrain/compare/88f66fd3481a0fb836f9437d57747c78609b4f71...1b220afdcf0bd85fc287d47d32074001aa1cc00d","Len":1} 1741495922
85 1 5 1 2 0 f refs/heads/home t {"Commits":[{"Sha1":"02ca421504d751d327245e54a90d9570054169ab","Message":"is-x-live crate\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T22:20:40-07:00"}],"HeadCommit":{"Sha1":"02ca421504d751d327245e54a90d9570054169ab","Message":"is-x-live crate\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T22:20:40-07:00"},"CompareURL":"bee8333/b3stack/compare/f73c559340e80c8094f18d90e7ec22303f7fd6d9...02ca421504d751d327245e54a90d9570054169ab","Len":1} 1741497648
86 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"8f7a152bd7b5ace5bf810d8cf1c9cd5f48374b07","Message":"vault backup: 2025-03-08 22:21:54\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T22:21:54-07:00"}],"HeadCommit":{"Sha1":"8f7a152bd7b5ace5bf810d8cf1c9cd5f48374b07","Message":"vault backup: 2025-03-08 22:21:54\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-08T22:21:54-07:00"},"CompareURL":"bee8333/beebrain/compare/1b220afdcf0bd85fc287d47d32074001aa1cc00d...8f7a152bd7b5ace5bf810d8cf1c9cd5f48374b07","Len":1} 1741497719
87 1 5 1 2 0 f refs/heads/home t {"Commits":[{"Sha1":"88669d70fa670d6ab03f634f8df5b62c99c89b84","Message":"Refactor Kick live status check and improve Rust application UI\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T22:59:39-07:00"}],"HeadCommit":{"Sha1":"88669d70fa670d6ab03f634f8df5b62c99c89b84","Message":"Refactor Kick live status check and improve Rust application UI\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T22:59:39-07:00"},"CompareURL":"bee8333/b3stack/compare/02ca421504d751d327245e54a90d9570054169ab...88669d70fa670d6ab03f634f8df5b62c99c89b84","Len":1} 1741499998
88 1 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"fc5e9c12943184e0865c8618a15c92087eb178cf","Message":"backup tweak/fix\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T23:09:42-07:00"}],"HeadCommit":{"Sha1":"fc5e9c12943184e0865c8618a15c92087eb178cf","Message":"backup tweak/fix\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T23:09:42-07:00"},"CompareURL":"bee8333/gitea-docker/compare/5084a0c98f148408f27f8d5c1f14148ca4dbf730...fc5e9c12943184e0865c8618a15c92087eb178cf","Len":1} 1741500605
89 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0d19b778a63830461d12e3d57331427aa8a095f5","Message":"vault backup: 2025-03-09 04:36:31\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-09T04:36:31-06:00"},{"Sha1":"6e3ac897e19aa81bf99ae7f9db6bfc792538e1cf","Message":"vault backup: 2025-03-08 23:47:03\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-08T23:47:03-07:00"}],"HeadCommit":{"Sha1":"0d19b778a63830461d12e3d57331427aa8a095f5","Message":"vault backup: 2025-03-09 04:36:31\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-09T04:36:31-06:00"},"CompareURL":"bee8333/beebrain/compare/8f7a152bd7b5ace5bf810d8cf1c9cd5f48374b07...0d19b778a63830461d12e3d57331427aa8a095f5","Len":2} 1741516595
90 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"5ccc60be8f9dcf1373ca20c2d0d9617a9866ff90","Message":"Hide\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-09T12:53:46Z"}],"HeadCommit":{"Sha1":"5ccc60be8f9dcf1373ca20c2d0d9617a9866ff90","Message":"Hide\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-09T12:53:46Z"},"CompareURL":"bee8333/beebrain/compare/0d19b778a63830461d12e3d57331427aa8a095f5...5ccc60be8f9dcf1373ca20c2d0d9617a9866ff90","Len":1} 1741524829
91 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"d2d9b941671d658d0e02e8a4349ce3f56dd02605","Message":"Merge remote-tracking branch 'origin/home' into home\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-12T13:28:47-06:00"},{"Sha1":"06075c01fa5466de68faec5ded3d93dc764c63d3","Message":"vault backup: 2025-03-12 13:28:44\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-12T13:28:44-06:00"}],"HeadCommit":{"Sha1":"d2d9b941671d658d0e02e8a4349ce3f56dd02605","Message":"Merge remote-tracking branch 'origin/home' into home\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-12T13:28:47-06:00"},"CompareURL":"bee8333/beebrain/compare/5ccc60be8f9dcf1373ca20c2d0d9617a9866ff90...d2d9b941671d658d0e02e8a4349ce3f56dd02605","Len":2} 1741807731
92 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"9aa40b41125b49deaf83310f5535f6205ff9827f","Message":"vault backup: 2025-03-12 19:34:46\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-12T19:34:46-06:00"}],"HeadCommit":{"Sha1":"9aa40b41125b49deaf83310f5535f6205ff9827f","Message":"vault backup: 2025-03-12 19:34:46\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-12T19:34:46-06:00"},"CompareURL":"bee8333/beebrain/compare/d2d9b941671d658d0e02e8a4349ce3f56dd02605...9aa40b41125b49deaf83310f5535f6205ff9827f","Len":1} 1741829691
93 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"09410b9a0c496eb2f257151808f0553a72830937","Message":"vault backup: 2025-03-12 20:40:37\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-12T20:40:37-06:00"}],"HeadCommit":{"Sha1":"09410b9a0c496eb2f257151808f0553a72830937","Message":"vault backup: 2025-03-12 20:40:37\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-12T20:40:37-06:00"},"CompareURL":"bee8333/beebrain/compare/9aa40b41125b49deaf83310f5535f6205ff9827f...09410b9a0c496eb2f257151808f0553a72830937","Len":1} 1741833642
94 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"e379025c5fc98b5215679cd5c3ff81f926ef6881","Message":"vault backup: 2025-03-13 22:52:16\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-13T22:52:16-06:00"}],"HeadCommit":{"Sha1":"e379025c5fc98b5215679cd5c3ff81f926ef6881","Message":"vault backup: 2025-03-13 22:52:16\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-13T22:52:16-06:00"},"CompareURL":"bee8333/beebrain/compare/09410b9a0c496eb2f257151808f0553a72830937...e379025c5fc98b5215679cd5c3ff81f926ef6881","Len":1} 1741927941
95 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"19b575e8ec9f375fb3a411407ea65359910a79f1","Message":"vault backup: 2025-03-14 05:54:27\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-14T05:54:27-06:00"}],"HeadCommit":{"Sha1":"19b575e8ec9f375fb3a411407ea65359910a79f1","Message":"vault backup: 2025-03-14 05:54:27\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-14T05:54:27-06:00"},"CompareURL":"bee8333/beebrain/compare/e379025c5fc98b5215679cd5c3ff81f926ef6881...19b575e8ec9f375fb3a411407ea65359910a79f1","Len":1} 1741953272
96 1 5 1 2 0 f refs/heads/home t {"Commits":[{"Sha1":"d0a528211d07cde8222870f6582ac58d5056fb74","Message":"Add genius-lyrics crate and update README with usage instructions\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-14T06:46:52-06:00"}],"HeadCommit":{"Sha1":"d0a528211d07cde8222870f6582ac58d5056fb74","Message":"Add genius-lyrics crate and update README with usage instructions\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-14T06:46:52-06:00"},"CompareURL":"bee8333/b3stack/compare/88669d70fa670d6ab03f634f8df5b62c99c89b84...d0a528211d07cde8222870f6582ac58d5056fb74","Len":1} 1741956417
97 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"414c9dff48db80bec7ebab18313a5667eb295a42","Message":"vault backup: 2025-03-14 06:50:44\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-14T06:50:44-06:00"}],"HeadCommit":{"Sha1":"414c9dff48db80bec7ebab18313a5667eb295a42","Message":"vault backup: 2025-03-14 06:50:44\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-14T06:50:44-06:00"},"CompareURL":"bee8333/beebrain/compare/19b575e8ec9f375fb3a411407ea65359910a79f1...414c9dff48db80bec7ebab18313a5667eb295a42","Len":1} 1741956647
98 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"ec9c7bc4c7b92ef5e53fa6c4ebc7efd2f0c45938","Message":"vault backup: 2025-03-14 06:51:15\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-14T06:51:15-06:00"}],"HeadCommit":{"Sha1":"ec9c7bc4c7b92ef5e53fa6c4ebc7efd2f0c45938","Message":"vault backup: 2025-03-14 06:51:15\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-14T06:51:15-06:00"},"CompareURL":"bee8333/beebrain/compare/414c9dff48db80bec7ebab18313a5667eb295a42...ec9c7bc4c7b92ef5e53fa6c4ebc7efd2f0c45938","Len":1} 1741956678
99 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"b19b79e50c3b9c7101eb9d600bf9b3010acfabc6","Message":"vault backup: 2025-03-14 08:35:51\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-14T08:35:51-06:00"}],"HeadCommit":{"Sha1":"b19b79e50c3b9c7101eb9d600bf9b3010acfabc6","Message":"vault backup: 2025-03-14 08:35:51\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-14T08:35:51-06:00"},"CompareURL":"bee8333/beebrain/compare/ec9c7bc4c7b92ef5e53fa6c4ebc7efd2f0c45938...b19b79e50c3b9c7101eb9d600bf9b3010acfabc6","Len":1} 1741962955
100 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"af88ecf04990531251c10f31acf21f0d42ea87b7","Message":"vault backup: 2025-03-15 06:57:58\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-15T06:57:58-06:00"}],"HeadCommit":{"Sha1":"af88ecf04990531251c10f31acf21f0d42ea87b7","Message":"vault backup: 2025-03-15 06:57:58\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-15T06:57:58-06:00"},"CompareURL":"bee8333/beebrain/compare/b19b79e50c3b9c7101eb9d600bf9b3010acfabc6...af88ecf04990531251c10f31acf21f0d42ea87b7","Len":1} 1742043482
101 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"c2b3e724a7854ae1f7eb1a55ec29b4b90b8fe8e1","Message":"vault backup: 2025-03-17 12:35:49\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-17T12:35:49-06:00"}],"HeadCommit":{"Sha1":"c2b3e724a7854ae1f7eb1a55ec29b4b90b8fe8e1","Message":"vault backup: 2025-03-17 12:35:49\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-17T12:35:49-06:00"},"CompareURL":"bee8333/beebrain/compare/af88ecf04990531251c10f31acf21f0d42ea87b7...c2b3e724a7854ae1f7eb1a55ec29b4b90b8fe8e1","Len":1} 1742236552
102 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0eaed955f47db3c54fadc75b776eb0073fff2210","Message":"vault backup: 2025-03-17 12:48:30\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-17T12:48:30-06:00"}],"HeadCommit":{"Sha1":"0eaed955f47db3c54fadc75b776eb0073fff2210","Message":"vault backup: 2025-03-17 12:48:30\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-17T12:48:30-06:00"},"CompareURL":"bee8333/beebrain/compare/c2b3e724a7854ae1f7eb1a55ec29b4b90b8fe8e1...0eaed955f47db3c54fadc75b776eb0073fff2210","Len":1} 1742237312
103 1 5 1 2 0 f refs/heads/crate4 t 1742245502
113 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"01249ee50de48d8be0ff317a6e2dd7ef694ddd83","Message":"vault backup: 2025-03-19 17:48:29\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T17:48:29-06:00"}],"HeadCommit":{"Sha1":"01249ee50de48d8be0ff317a6e2dd7ef694ddd83","Message":"vault backup: 2025-03-19 17:48:29\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T17:48:29-06:00"},"CompareURL":"bee8333/beebrain/compare/98d0c18ccf7451194a473f7112a9863955d28073...01249ee50de48d8be0ff317a6e2dd7ef694ddd83","Len":1} 1742428112
104 1 5 1 2 0 f refs/heads/crate4 t {"Commits":[{"Sha1":"43e5f85f1683b623bce051a244d111c912ce0c61","Message":"Add PDF to Markdown conversion functionality\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-17T15:02:45-06:00"},{"Sha1":"c4670a313444c9d3fbe63555ff04041f564fe784","Message":"Add file-converter to workspace members\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-17T14:59:08-06:00"},{"Sha1":"54f378f83b49b1097ef3d6b7e271f9f21d602921","Message":"Add file-converter crate with markdown to HTML conversion\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-17T14:59:04-06:00"}],"HeadCommit":{"Sha1":"43e5f85f1683b623bce051a244d111c912ce0c61","Message":"Add PDF to Markdown conversion functionality\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-17T15:02:45-06:00"},"CompareURL":"bee8333/b3stack/compare/d0a528211d07cde8222870f6582ac58d5056fb74...43e5f85f1683b623bce051a244d111c912ce0c61","Len":3} 1742245502
105 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"3d4f299daacfad0a31ae4f2344f9ed2a279edbdd","Message":"vault backup: 2025-03-18 08:55:31\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-18T08:55:31-06:00"}],"HeadCommit":{"Sha1":"3d4f299daacfad0a31ae4f2344f9ed2a279edbdd","Message":"vault backup: 2025-03-18 08:55:31\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-18T08:55:31-06:00"},"CompareURL":"bee8333/beebrain/compare/0eaed955f47db3c54fadc75b776eb0073fff2210...3d4f299daacfad0a31ae4f2344f9ed2a279edbdd","Len":1} 1742309736
106 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"9f0f8558709ff9e08d066c3d72a0e55e62f74765","Message":"vault backup: 2025-03-18 18:43:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-18T18:43:10-06:00"}],"HeadCommit":{"Sha1":"9f0f8558709ff9e08d066c3d72a0e55e62f74765","Message":"vault backup: 2025-03-18 18:43:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-18T18:43:10-06:00"},"CompareURL":"bee8333/beebrain/compare/3d4f299daacfad0a31ae4f2344f9ed2a279edbdd...9f0f8558709ff9e08d066c3d72a0e55e62f74765","Len":1} 1742344993
107 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"1c68cb4adebe868c499d64081d84bbd5c282be46","Message":"vault backup: 2025-03-19 04:46:29\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T04:46:29-06:00"}],"HeadCommit":{"Sha1":"1c68cb4adebe868c499d64081d84bbd5c282be46","Message":"vault backup: 2025-03-19 04:46:29\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T04:46:29-06:00"},"CompareURL":"bee8333/beebrain/compare/9f0f8558709ff9e08d066c3d72a0e55e62f74765...1c68cb4adebe868c499d64081d84bbd5c282be46","Len":1} 1742381192
108 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"818790ae4ef41f9db2875f84443ea0b718e0e303","Message":"vault backup: 2025-03-19 12:12:31\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T12:12:31-06:00"}],"HeadCommit":{"Sha1":"818790ae4ef41f9db2875f84443ea0b718e0e303","Message":"vault backup: 2025-03-19 12:12:31\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T12:12:31-06:00"},"CompareURL":"bee8333/beebrain/compare/1c68cb4adebe868c499d64081d84bbd5c282be46...818790ae4ef41f9db2875f84443ea0b718e0e303","Len":1} 1742407953
109 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"19f574f1fd928ddd13603b2d0ee721311588cb85","Message":"vault backup: 2025-03-19 12:16:22\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T12:16:22-06:00"}],"HeadCommit":{"Sha1":"19f574f1fd928ddd13603b2d0ee721311588cb85","Message":"vault backup: 2025-03-19 12:16:22\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T12:16:22-06:00"},"CompareURL":"bee8333/beebrain/compare/818790ae4ef41f9db2875f84443ea0b718e0e303...19f574f1fd928ddd13603b2d0ee721311588cb85","Len":1} 1742408184
110 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"e574de0fa17945985cc2a447fd076b2c684ca8b3","Message":"vault backup: 2025-03-19 14:03:12\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T14:03:12-06:00"}],"HeadCommit":{"Sha1":"e574de0fa17945985cc2a447fd076b2c684ca8b3","Message":"vault backup: 2025-03-19 14:03:12\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T14:03:12-06:00"},"CompareURL":"bee8333/beebrain/compare/19f574f1fd928ddd13603b2d0ee721311588cb85...e574de0fa17945985cc2a447fd076b2c684ca8b3","Len":1} 1742414594
111 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"9969c77526754ea7d6ad3528ecd95dfe4b703871","Message":"vault backup: 2025-03-19 14:22:39\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T14:22:39-06:00"}],"HeadCommit":{"Sha1":"9969c77526754ea7d6ad3528ecd95dfe4b703871","Message":"vault backup: 2025-03-19 14:22:39\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T14:22:39-06:00"},"CompareURL":"bee8333/beebrain/compare/e574de0fa17945985cc2a447fd076b2c684ca8b3...9969c77526754ea7d6ad3528ecd95dfe4b703871","Len":1} 1742415762
112 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"98d0c18ccf7451194a473f7112a9863955d28073","Message":"vault backup: 2025-03-19 17:17:19\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T17:17:19-06:00"}],"HeadCommit":{"Sha1":"98d0c18ccf7451194a473f7112a9863955d28073","Message":"vault backup: 2025-03-19 17:17:19\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T17:17:19-06:00"},"CompareURL":"bee8333/beebrain/compare/9969c77526754ea7d6ad3528ecd95dfe4b703871...98d0c18ccf7451194a473f7112a9863955d28073","Len":1} 1742426242
133 4 8 1 3 0 f f bee8333/bounce 1743228433
114 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"b9b18ae3d8f8c61d77fe1a305a19377e9b6e0ba1","Message":"vault backup: 2025-03-19 20:13:49\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T20:13:49-06:00"}],"HeadCommit":{"Sha1":"b9b18ae3d8f8c61d77fe1a305a19377e9b6e0ba1","Message":"vault backup: 2025-03-19 20:13:49\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T20:13:49-06:00"},"CompareURL":"bee8333/beebrain/compare/01249ee50de48d8be0ff317a6e2dd7ef694ddd83...b9b18ae3d8f8c61d77fe1a305a19377e9b6e0ba1","Len":1} 1742436833
115 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"16061eea5a4154498ebfc4667b3f6ad151b1710b","Message":"vault backup: 2025-03-19 20:54:57\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T20:54:57-06:00"}],"HeadCommit":{"Sha1":"16061eea5a4154498ebfc4667b3f6ad151b1710b","Message":"vault backup: 2025-03-19 20:54:57\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-19T20:54:57-06:00"},"CompareURL":"bee8333/beebrain/compare/b9b18ae3d8f8c61d77fe1a305a19377e9b6e0ba1...16061eea5a4154498ebfc4667b3f6ad151b1710b","Len":1} 1742439302
116 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"b08b8dee09d818cbd9d6990d96ae0cd7bc70d253","Message":"vault backup: 2025-03-20 22:28:39\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:28:39-06:00"}],"HeadCommit":{"Sha1":"b08b8dee09d818cbd9d6990d96ae0cd7bc70d253","Message":"vault backup: 2025-03-20 22:28:39\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:28:39-06:00"},"CompareURL":"bee8333/beebrain/compare/16061eea5a4154498ebfc4667b3f6ad151b1710b...b08b8dee09d818cbd9d6990d96ae0cd7bc70d253","Len":1} 1742531324
117 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"318e36d6103599abbd23f098eb8e88400fa52827","Message":"vault backup: 2025-03-20 22:33:52\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:33:52-06:00"}],"HeadCommit":{"Sha1":"318e36d6103599abbd23f098eb8e88400fa52827","Message":"vault backup: 2025-03-20 22:33:52\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:33:52-06:00"},"CompareURL":"bee8333/beebrain/compare/b08b8dee09d818cbd9d6990d96ae0cd7bc70d253...318e36d6103599abbd23f098eb8e88400fa52827","Len":1} 1742531636
118 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"619b7b85737eb0bf05b319584f036e5a59b40a99","Message":"vault backup: 2025-03-20 22:37:12\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:37:12-06:00"}],"HeadCommit":{"Sha1":"619b7b85737eb0bf05b319584f036e5a59b40a99","Message":"vault backup: 2025-03-20 22:37:12\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:37:12-06:00"},"CompareURL":"bee8333/beebrain/compare/318e36d6103599abbd23f098eb8e88400fa52827...619b7b85737eb0bf05b319584f036e5a59b40a99","Len":1} 1742531837
119 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"1be6381de9691c361fc124bf83cc94a367ee9918","Message":"vault backup: 2025-03-20 22:38:40\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:38:40-06:00"}],"HeadCommit":{"Sha1":"1be6381de9691c361fc124bf83cc94a367ee9918","Message":"vault backup: 2025-03-20 22:38:40\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:38:40-06:00"},"CompareURL":"bee8333/beebrain/compare/619b7b85737eb0bf05b319584f036e5a59b40a99...1be6381de9691c361fc124bf83cc94a367ee9918","Len":1} 1742531924
120 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0d7b4def88266246b0f1d124318704f878ccc936","Message":"vault backup: 2025-03-20 22:40:02\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:40:02-06:00"}],"HeadCommit":{"Sha1":"0d7b4def88266246b0f1d124318704f878ccc936","Message":"vault backup: 2025-03-20 22:40:02\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:40:02-06:00"},"CompareURL":"bee8333/beebrain/compare/1be6381de9691c361fc124bf83cc94a367ee9918...0d7b4def88266246b0f1d124318704f878ccc936","Len":1} 1742532005
121 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"15b764009c53dca04dde546cfa460e64e04f4091","Message":"vault backup: 2025-03-20 22:55:51\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:55:51-06:00"}],"HeadCommit":{"Sha1":"15b764009c53dca04dde546cfa460e64e04f4091","Message":"vault backup: 2025-03-20 22:55:51\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-20T22:55:51-06:00"},"CompareURL":"bee8333/beebrain/compare/0d7b4def88266246b0f1d124318704f878ccc936...15b764009c53dca04dde546cfa460e64e04f4091","Len":1} 1742532955
122 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"43d91880de4d5ff46429586a5213d668b6f4600b","Message":"vault backup: 2025-03-21 20:25:49\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-21T20:25:49-06:00"}],"HeadCommit":{"Sha1":"43d91880de4d5ff46429586a5213d668b6f4600b","Message":"vault backup: 2025-03-21 20:25:49\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-21T20:25:49-06:00"},"CompareURL":"bee8333/beebrain/compare/15b764009c53dca04dde546cfa460e64e04f4091...43d91880de4d5ff46429586a5213d668b6f4600b","Len":1} 1742610353
134 3 8 3 5 0 f f 841/b3share 1743228487
135 1 8 3 5 0 f f 841/b3share 1743228487
136 1 8 1 5 0 f f bee8333/b3share 1743228503
137 4 8 1 5 0 f f bee8333/b3share 1743228503
138 3 8 1 5 0 f f bee8333/b3share 1743228503
139 1 8 1 4 0 f f bee8333/gitea-docker 1743228557
123 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"46dd6c48cfe0c1938333eb13d03961ce945f600b","Message":"vault backup: 2025-03-22 04:02:22\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-22T04:02:22-06:00"}],"HeadCommit":{"Sha1":"46dd6c48cfe0c1938333eb13d03961ce945f600b","Message":"vault backup: 2025-03-22 04:02:22\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-22T04:02:22-06:00"},"CompareURL":"bee8333/beebrain/compare/43d91880de4d5ff46429586a5213d668b6f4600b...46dd6c48cfe0c1938333eb13d03961ce945f600b","Len":1} 1742637748
124 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"de4e7aaee501c883dab9145f69653a54382a293d","Message":"vault backup: 2025-03-22 13:26:25\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-22T13:26:25-06:00"}],"HeadCommit":{"Sha1":"de4e7aaee501c883dab9145f69653a54382a293d","Message":"vault backup: 2025-03-22 13:26:25\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-22T13:26:25-06:00"},"CompareURL":"bee8333/beebrain/compare/46dd6c48cfe0c1938333eb13d03961ce945f600b...de4e7aaee501c883dab9145f69653a54382a293d","Len":1} 1742671589
125 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"ee0639a7eb56063214647ec651a873c9b4251d50","Message":"vault backup: 2025-03-24 15:06:14\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-24T15:06:14-06:00"}],"HeadCommit":{"Sha1":"ee0639a7eb56063214647ec651a873c9b4251d50","Message":"vault backup: 2025-03-24 15:06:14\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-24T15:06:14-06:00"},"CompareURL":"bee8333/beebrain/compare/de4e7aaee501c883dab9145f69653a54382a293d...ee0639a7eb56063214647ec651a873c9b4251d50","Len":1} 1742850379
126 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"e7c208f47b9dbc268173b9addc70adde5135d69a","Message":"F\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-24T21:37:06Z"}],"HeadCommit":{"Sha1":"e7c208f47b9dbc268173b9addc70adde5135d69a","Message":"F\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-24T21:37:06Z"},"CompareURL":"bee8333/beebrain/compare/ee0639a7eb56063214647ec651a873c9b4251d50...e7c208f47b9dbc268173b9addc70adde5135d69a","Len":1} 1742852228
127 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"3eb431ce15795a580df7e8c9a012bc20df64a97d","Message":"Merge remote-tracking branch 'origin/home' into home\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-28T18:44:12-06:00"},{"Sha1":"bd3c0a9ae5c74f3d8631056d14054a521edb4cac","Message":"vault backup: 2025-03-28 18:44:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-28T18:44:10-06:00"}],"HeadCommit":{"Sha1":"3eb431ce15795a580df7e8c9a012bc20df64a97d","Message":"Merge remote-tracking branch 'origin/home' into home\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-28T18:44:12-06:00"},"CompareURL":"bee8333/beebrain/compare/e7c208f47b9dbc268173b9addc70adde5135d69a...3eb431ce15795a580df7e8c9a012bc20df64a97d","Len":2} 1743209054
128 1 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"5f329bc7e385540150ef9c82a868ca947c5dd0fb","Message":"Add Traefik reverse proxy configuration for Gitea with HTTPS support and updated server settings\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-28T23:00:50-06:00"},{"Sha1":"f461f47e9f2ad83cb20fd26f44eac6b49004c2bb","Message":"backup permission fix\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-28T18:25:38-06:00"}],"HeadCommit":{"Sha1":"5f329bc7e385540150ef9c82a868ca947c5dd0fb","Message":"Add Traefik reverse proxy configuration for Gitea with HTTPS support and updated server settings\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-28T23:00:50-06:00"},"CompareURL":"bee8333/gitea-docker/compare/fc5e9c12943184e0865c8618a15c92087eb178cf...5f329bc7e385540150ef9c82a868ca947c5dd0fb","Len":2} 1743224621
129 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"e11df7a8dfca0dee5d67b4d9222449679419b928","Message":"vault backup: 2025-03-28 23:39:47\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-28T23:39:47-06:00"}],"HeadCommit":{"Sha1":"e11df7a8dfca0dee5d67b4d9222449679419b928","Message":"vault backup: 2025-03-28 23:39:47\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-28T23:39:47-06:00"},"CompareURL":"bee8333/beebrain/compare/3eb431ce15795a580df7e8c9a012bc20df64a97d...e11df7a8dfca0dee5d67b4d9222449679419b928","Len":1} 1743226793
130 1 5 1 2 0 f refs/heads/crate4 t {"Commits":[{"Sha1":"ab911b021224beeec3c4e1c897131b54349db894","Message":"Add multiple new dependencies and update existing ones in Cargo.lock\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-28T23:58:27-06:00"},{"Sha1":"5eeb7c8e2d479d0cbb595cb2b4a6afe62963d9a9","Message":"Add yt-dlp support for YouTube downloads\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-18T09:06:22-06:00"},{"Sha1":"ace354d4b34ecd2523bed23fc2d2f6329f5d7854","Message":"Add FFmpeg support for audio/video conversion\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-17T16:37:53-06:00"}],"HeadCommit":{"Sha1":"ab911b021224beeec3c4e1c897131b54349db894","Message":"Add multiple new dependencies and update existing ones in Cargo.lock\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-03-28T23:58:27-06:00"},"CompareURL":"bee8333/b3stack/compare/43e5f85f1683b623bce051a244d111c912ce0c61...ab911b021224beeec3c4e1c897131b54349db894","Len":3} 1743227949
131 1 8 1 5 0 f f bee8333/b3share 1743228311
132 1 8 1 3 0 f f bee8333/bounce 1743228433
141 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0410caa598ef43f158a76d76f0b97bc07918386b","Message":"vault backup: 2025-03-29 01:12:51\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-29T01:12:51-06:00"},{"Sha1":"a06fb4a9863a6b4f5edcca4f661b5a4a18379e7f","Message":"vault backup: 2025-03-29 00:55:53\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-29T00:55:53-06:00"}],"HeadCommit":{"Sha1":"0410caa598ef43f158a76d76f0b97bc07918386b","Message":"vault backup: 2025-03-29 01:12:51\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-29T01:12:51-06:00"},"CompareURL":"bee8333/beebrain/compare/e11df7a8dfca0dee5d67b4d9222449679419b928...0410caa598ef43f158a76d76f0b97bc07918386b","Len":2} 1743232469
142 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"a064a39d1ca13da395fac00ed8bccbe202d20593","Message":"principles\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-29T01:38:03-06:00"}],"HeadCommit":{"Sha1":"a064a39d1ca13da395fac00ed8bccbe202d20593","Message":"principles\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-29T01:38:03-06:00"},"CompareURL":"bee8333/beebrain/compare/0410caa598ef43f158a76d76f0b97bc07918386b...a064a39d1ca13da395fac00ed8bccbe202d20593","Len":1} 1743233904
143 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"558ff59c17773f769c46ee39379152774814e9b6","Message":"Merge remote-tracking branch 'origin/home' into home\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-29T21:00:33-06:00"},{"Sha1":"993393fd928357db3a17ea4d7ef9369ff464268e","Message":"vault backup: 2025-03-29 20:57:42\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-29T20:57:42-06:00"}],"HeadCommit":{"Sha1":"558ff59c17773f769c46ee39379152774814e9b6","Message":"Merge remote-tracking branch 'origin/home' into home\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-29T21:00:33-06:00"},"CompareURL":"bee8333/beebrain/compare/a064a39d1ca13da395fac00ed8bccbe202d20593...558ff59c17773f769c46ee39379152774814e9b6","Len":2} 1743303645
144 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"72bc2c16a220c849bff080ff31b21383299f6176","Message":"vault backup: 2025-03-29 21:01:20\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-29T21:01:20-06:00"}],"HeadCommit":{"Sha1":"72bc2c16a220c849bff080ff31b21383299f6176","Message":"vault backup: 2025-03-29 21:01:20\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-03-29T21:01:20-06:00"},"CompareURL":"bee8333/beebrain/compare/558ff59c17773f769c46ee39379152774814e9b6...72bc2c16a220c849bff080ff31b21383299f6176","Len":1} 1743303684
145 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"4c072e54e334fccbc89ba6e57bde837e5ed1e7a5","Message":"vault backup: 2025-04-04 20:59:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-04T20:59:10-06:00"},{"Sha1":"ebf5b7d8609c0df2f8b47576c81543f669a3104c","Message":"vault backup: 2025-04-04 20:22:36\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-04T20:22:36-06:00"}],"HeadCommit":{"Sha1":"4c072e54e334fccbc89ba6e57bde837e5ed1e7a5","Message":"vault backup: 2025-04-04 20:59:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-04T20:59:10-06:00"},"CompareURL":"bee8333/beebrain/compare/72bc2c16a220c849bff080ff31b21383299f6176...4c072e54e334fccbc89ba6e57bde837e5ed1e7a5","Len":2} 1743821955
146 1 1 1 6 0 f f 1743823092
147 1 5 1 6 0 f refs/heads/prod f {"Commits":[{"Sha1":"f74bab9ed4f586f6291d11b69fbcae13f5cc6efb","Message":"# 2ticketss\\n2 complementary command-line tools for GitHub issue management\\n- **00-jira-to-gh-issues**: A Rust tool that converts Jira CSV exports to GitHub issue markdown files compatible with gh-issue-generator. It handles messy CSV data and preserves issue metadata\\n- **01-gh-issue-generator**: A Rust tool that creates GitHub issues from Markdown files with YAML front matter. It parses structured Markdown, supports batch processing, and integrates with GitHub CLI\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-04T22:32:49-06:00"}],"HeadCommit":{"Sha1":"f74bab9ed4f586f6291d11b69fbcae13f5cc6efb","Message":"# 2ticketss\\n2 complementary command-line tools for GitHub issue management\\n- **00-jira-to-gh-issues**: A Rust tool that converts Jira CSV exports to GitHub issue markdown files compatible with gh-issue-generator. It handles messy CSV data and preserves issue metadata\\n- **01-gh-issue-generator**: A Rust tool that creates GitHub issues from Markdown files with YAML front matter. It parses structured Markdown, supports batch processing, and integrates with GitHub CLI\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-04T22:32:49-06:00"},"CompareURL":"bee8333/2ticketss/compare/3cf97486845cf526b9965eaf2aa492311d331126...f74bab9ed4f586f6291d11b69fbcae13f5cc6efb","Len":1} 1743827686
148 1 8 1 6 0 f f bee8333/2ticketss 1743827960
149 4 8 1 6 0 f f bee8333/2ticketss 1743827960
150 2 8 1 6 0 f f bee8333/2ticketss 1743827960
151 3 8 1 6 0 f f bee8333/2ticketss 1743827960
152 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"951a524e824cf31bc89e107ad26f405d5aa663aa","Message":"vault backup: 2025-04-05 18:58:49\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-05T18:58:49-06:00"}],"HeadCommit":{"Sha1":"951a524e824cf31bc89e107ad26f405d5aa663aa","Message":"vault backup: 2025-04-05 18:58:49\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-05T18:58:49-06:00"},"CompareURL":"bee8333/beebrain/compare/4c072e54e334fccbc89ba6e57bde837e5ed1e7a5...951a524e824cf31bc89e107ad26f405d5aa663aa","Len":1} 1743901134
153 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"78be8ce75339806157778d21492d26b5f9447a82","Message":"vault backup: 2025-04-06 11:03:55\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T11:03:55-06:00"}],"HeadCommit":{"Sha1":"78be8ce75339806157778d21492d26b5f9447a82","Message":"vault backup: 2025-04-06 11:03:55\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T11:03:55-06:00"},"CompareURL":"bee8333/beebrain/compare/951a524e824cf31bc89e107ad26f405d5aa663aa...78be8ce75339806157778d21492d26b5f9447a82","Len":1} 1743959339
154 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"69a444c8108c3ede2329c5e622563aa3b2df8702","Message":"vault backup: 2025-04-06 12:20:41\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T12:20:41-06:00"},{"Sha1":"68841f0fb57c18b13280e8d42b29727df1d6007a","Message":"vault backup: 2025-04-06 12:17:47\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T12:17:47-06:00"}],"HeadCommit":{"Sha1":"69a444c8108c3ede2329c5e622563aa3b2df8702","Message":"vault backup: 2025-04-06 12:20:41\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T12:20:41-06:00"},"CompareURL":"bee8333/beebrain/compare/78be8ce75339806157778d21492d26b5f9447a82...69a444c8108c3ede2329c5e622563aa3b2df8702","Len":2} 1743963647
155 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"920025a2d34b4fb66ffd6f76c1816b2f806af2eb","Message":"vault backup: 2025-04-06 20:21:36\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T20:21:36-06:00"}],"HeadCommit":{"Sha1":"920025a2d34b4fb66ffd6f76c1816b2f806af2eb","Message":"vault backup: 2025-04-06 20:21:36\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T20:21:36-06:00"},"CompareURL":"bee8333/beebrain/compare/69a444c8108c3ede2329c5e622563aa3b2df8702...920025a2d34b4fb66ffd6f76c1816b2f806af2eb","Len":1} 1743992500
156 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"5fa58dde73e62d075d9817d6876c8ff91051101e","Message":"vault backup: 2025-04-06 20:33:41\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T20:33:41-06:00"}],"HeadCommit":{"Sha1":"5fa58dde73e62d075d9817d6876c8ff91051101e","Message":"vault backup: 2025-04-06 20:33:41\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T20:33:41-06:00"},"CompareURL":"bee8333/beebrain/compare/920025a2d34b4fb66ffd6f76c1816b2f806af2eb...5fa58dde73e62d075d9817d6876c8ff91051101e","Len":1} 1743993225
157 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"072e7664ec9baf8f66c0551de9c879f1fcdf9980","Message":"vault backup: 2025-04-06 20:48:54\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T20:48:54-06:00"}],"HeadCommit":{"Sha1":"072e7664ec9baf8f66c0551de9c879f1fcdf9980","Message":"vault backup: 2025-04-06 20:48:54\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T20:48:54-06:00"},"CompareURL":"bee8333/beebrain/compare/5fa58dde73e62d075d9817d6876c8ff91051101e...072e7664ec9baf8f66c0551de9c879f1fcdf9980","Len":1} 1743994137
158 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0ca2b283ef51fcfe3791b92e5525f814843b61b9","Message":"components for mdx\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T23:47:05-06:00"}],"HeadCommit":{"Sha1":"0ca2b283ef51fcfe3791b92e5525f814843b61b9","Message":"components for mdx\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T23:47:05-06:00"},"CompareURL":"bee8333/beebrain/compare/072e7664ec9baf8f66c0551de9c879f1fcdf9980...0ca2b283ef51fcfe3791b92e5525f814843b61b9","Len":1} 1744005163
159 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"e7b9d2ef60a9bc895ef3a1294dcb04e3c3d07084","Message":"vault backup: 2025-04-06 23:57:20\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T23:57:20-06:00"}],"HeadCommit":{"Sha1":"e7b9d2ef60a9bc895ef3a1294dcb04e3c3d07084","Message":"vault backup: 2025-04-06 23:57:20\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-06T23:57:20-06:00"},"CompareURL":"bee8333/beebrain/compare/0ca2b283ef51fcfe3791b92e5525f814843b61b9...e7b9d2ef60a9bc895ef3a1294dcb04e3c3d07084","Len":1} 1744005502
160 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"61dce0b6d32da9ef8e897d31857cae174c0d0b02","Message":"vault backup: 2025-04-07 00:05:59\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-07T00:05:59-06:00"}],"HeadCommit":{"Sha1":"61dce0b6d32da9ef8e897d31857cae174c0d0b02","Message":"vault backup: 2025-04-07 00:05:59\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-07T00:05:59-06:00"},"CompareURL":"bee8333/beebrain/compare/e7b9d2ef60a9bc895ef3a1294dcb04e3c3d07084...61dce0b6d32da9ef8e897d31857cae174c0d0b02","Len":1} 1744005972
161 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"6c967f954615f6885b65e9974a3af90ffdc8ecac","Message":"vault backup: 2025-04-08 18:31:19\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-08T18:31:19-06:00"},{"Sha1":"aa08a4901c30a0c5de53788ba5f7a04398e7550e","Message":"vault backup: 2025-04-07 11:15:57\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-07T11:15:57-06:00"}],"HeadCommit":{"Sha1":"6c967f954615f6885b65e9974a3af90ffdc8ecac","Message":"vault backup: 2025-04-08 18:31:19\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-08T18:31:19-06:00"},"CompareURL":"bee8333/beebrain/compare/61dce0b6d32da9ef8e897d31857cae174c0d0b02...6c967f954615f6885b65e9974a3af90ffdc8ecac","Len":2} 1744158684
162 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"dd3851dee8141e65f19f4a14f525b3ae9536c1d2","Message":"vault backup: 2025-04-08 18:49:54\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-08T18:49:54-06:00"}],"HeadCommit":{"Sha1":"dd3851dee8141e65f19f4a14f525b3ae9536c1d2","Message":"vault backup: 2025-04-08 18:49:54\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-08T18:49:54-06:00"},"CompareURL":"bee8333/beebrain/compare/6c967f954615f6885b65e9974a3af90ffdc8ecac...dd3851dee8141e65f19f4a14f525b3ae9536c1d2","Len":1} 1744159798
164 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"c1c6388434b0ced0b60f542a3b19ea8ee1a3771c","Message":"vault backup: 2025-04-08 19:13:48\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-08T19:13:48-06:00"}],"HeadCommit":{"Sha1":"c1c6388434b0ced0b60f542a3b19ea8ee1a3771c","Message":"vault backup: 2025-04-08 19:13:48\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-08T19:13:48-06:00"},"CompareURL":"bee8333/beebrain/compare/eb79d44e2c09f7a6d6739232c445c876e93914b9...c1c6388434b0ced0b60f542a3b19ea8ee1a3771c","Len":1} 1744161233
165 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"b39bf170091f7376ce12d7c6c7045a10779942da","Message":"vault backup: 2025-04-08 19:27:46\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-08T19:27:46-06:00"}],"HeadCommit":{"Sha1":"b39bf170091f7376ce12d7c6c7045a10779942da","Message":"vault backup: 2025-04-08 19:27:46\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-08T19:27:46-06:00"},"CompareURL":"bee8333/beebrain/compare/c1c6388434b0ced0b60f542a3b19ea8ee1a3771c...b39bf170091f7376ce12d7c6c7045a10779942da","Len":1} 1744162069
163 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"eb79d44e2c09f7a6d6739232c445c876e93914b9","Message":"Update .gitignore to include all files in .smart-env except for smart_threads directory\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-08T19:02:56-06:00"}],"HeadCommit":{"Sha1":"eb79d44e2c09f7a6d6739232c445c876e93914b9","Message":"Update .gitignore to include all files in .smart-env except for smart_threads directory\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-08T19:02:56-06:00"},"CompareURL":"bee8333/beebrain/compare/dd3851dee8141e65f19f4a14f525b3ae9536c1d2...eb79d44e2c09f7a6d6739232c445c876e93914b9","Len":1} 1744160584
166 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"3f138bc1c742e14d70caa31b7dfa083633146a85","Message":"vault backup: 2025-04-09 07:19:28\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-09T07:19:28-06:00"}],"HeadCommit":{"Sha1":"3f138bc1c742e14d70caa31b7dfa083633146a85","Message":"vault backup: 2025-04-09 07:19:28\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-09T07:19:28-06:00"},"CompareURL":"bee8333/beebrain/compare/b39bf170091f7376ce12d7c6c7045a10779942da...3f138bc1c742e14d70caa31b7dfa083633146a85","Len":1} 1744204772
167 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"7daa175de5c2caa65e3ce9601df4008f13ed4129","Message":"vault backup: 2025-04-09 07:20:14\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-09T07:20:14-06:00"}],"HeadCommit":{"Sha1":"7daa175de5c2caa65e3ce9601df4008f13ed4129","Message":"vault backup: 2025-04-09 07:20:14\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-09T07:20:14-06:00"},"CompareURL":"bee8333/beebrain/compare/3f138bc1c742e14d70caa31b7dfa083633146a85...7daa175de5c2caa65e3ce9601df4008f13ed4129","Len":1} 1744204817
168 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"9ccb60659b612ac41c19463a3cb509d6ce31cce9","Message":"vault backup: 2025-04-09 08:25:16\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-09T08:25:16-06:00"}],"HeadCommit":{"Sha1":"9ccb60659b612ac41c19463a3cb509d6ce31cce9","Message":"vault backup: 2025-04-09 08:25:16\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-09T08:25:16-06:00"},"CompareURL":"bee8333/beebrain/compare/7daa175de5c2caa65e3ce9601df4008f13ed4129...9ccb60659b612ac41c19463a3cb509d6ce31cce9","Len":1} 1744208721
169 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"ae37a0c4a267374f02490d1a79203e7416ef38f2","Message":"vault backup: 2025-04-09 19:47:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-09T19:47:10-06:00"},{"Sha1":"5dd4116d717f84095dac93121f19dbdb6393543d","Message":"vault backup: 2025-04-09 19:23:22\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-09T19:23:22-06:00"}],"HeadCommit":{"Sha1":"ae37a0c4a267374f02490d1a79203e7416ef38f2","Message":"vault backup: 2025-04-09 19:47:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-09T19:47:10-06:00"},"CompareURL":"bee8333/beebrain/compare/9ccb60659b612ac41c19463a3cb509d6ce31cce9...ae37a0c4a267374f02490d1a79203e7416ef38f2","Len":2} 1744249670
170 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"074cd2d6972c0b998d238429762362dd22e4dcbb","Message":"vault backup: 2025-04-09 23:06:14\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-09T23:06:14-06:00"}],"HeadCommit":{"Sha1":"074cd2d6972c0b998d238429762362dd22e4dcbb","Message":"vault backup: 2025-04-09 23:06:14\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-09T23:06:14-06:00"},"CompareURL":"bee8333/beebrain/compare/ae37a0c4a267374f02490d1a79203e7416ef38f2...074cd2d6972c0b998d238429762362dd22e4dcbb","Len":1} 1744261878
171 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"94d9138d5697609fc422e7948a8a85ad753fb345","Message":"vault backup: 2025-04-10 03:03:59\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-10T03:03:59-06:00"}],"HeadCommit":{"Sha1":"94d9138d5697609fc422e7948a8a85ad753fb345","Message":"vault backup: 2025-04-10 03:03:59\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-10T03:03:59-06:00"},"CompareURL":"bee8333/beebrain/compare/074cd2d6972c0b998d238429762362dd22e4dcbb...94d9138d5697609fc422e7948a8a85ad753fb345","Len":1} 1744276142
172 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"e1018a41157256780fca1a2ad793f9982d15fc7a","Message":"vault backup: 2025-04-10 03:24:37\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-10T03:24:37-06:00"}],"HeadCommit":{"Sha1":"e1018a41157256780fca1a2ad793f9982d15fc7a","Message":"vault backup: 2025-04-10 03:24:37\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-10T03:24:37-06:00"},"CompareURL":"bee8333/beebrain/compare/94d9138d5697609fc422e7948a8a85ad753fb345...e1018a41157256780fca1a2ad793f9982d15fc7a","Len":1} 1744277380
173 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"9fc610028a1ab9a248fe35b40a5167a575cfb978","Message":"vault backup: 2025-04-10 21:23:04\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-10T21:23:04-06:00"}],"HeadCommit":{"Sha1":"9fc610028a1ab9a248fe35b40a5167a575cfb978","Message":"vault backup: 2025-04-10 21:23:04\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-10T21:23:04-06:00"},"CompareURL":"bee8333/beebrain/compare/e1018a41157256780fca1a2ad793f9982d15fc7a...9fc610028a1ab9a248fe35b40a5167a575cfb978","Len":1} 1744341799
174 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"32914297a4bfec93cdc91d3e3889c8c6ef166b1c","Message":"vault backup: 2025-04-19 19:18:47\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:18:47-06:00"},{"Sha1":"3068b4298ce48c0483bd110dd7c43d69df4f2ab4","Message":"vault backup: 2025-04-13 16:48:54\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-13T16:48:54-06:00"},{"Sha1":"bc3fa24a703856cbef1e8e06af6867c3017c5730","Message":"vault backup: 2025-04-13 16:11:21\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-13T16:11:21-06:00"},{"Sha1":"aa659667e7ae13f513502122bd88db337fe4f687","Message":"vault backup: 2025-04-13 15:46:25\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-13T15:46:25-06:00"}],"HeadCommit":{"Sha1":"32914297a4bfec93cdc91d3e3889c8c6ef166b1c","Message":"vault backup: 2025-04-19 19:18:47\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:18:47-06:00"},"CompareURL":"bee8333/beebrain/compare/9fc610028a1ab9a248fe35b40a5167a575cfb978...32914297a4bfec93cdc91d3e3889c8c6ef166b1c","Len":4} 1745111930
175 1 5 1 2 0 f refs/heads/crate02 t 1745112435
176 1 5 1 2 0 f refs/heads/crate02 t {"Commits":[{"Sha1":"22718fdc0533b54e2514893f87cd2ee2321de2c5","Message":"progress\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:27:07-06:00"}],"HeadCommit":{"Sha1":"22718fdc0533b54e2514893f87cd2ee2321de2c5","Message":"progress\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:27:07-06:00"},"CompareURL":"bee8333/b3stack/compare/ab911b021224beeec3c4e1c897131b54349db894...22718fdc0533b54e2514893f87cd2ee2321de2c5","Len":1} 1745112435
177 1 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"cba5e8167b5f6dffb7943dd452640111ddb3a56c","Message":"Enhance Gitea database backup script with relative paths, logging, and Docker checks; update scheduling script to include Docker check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:36:36-06:00"}],"HeadCommit":{"Sha1":"cba5e8167b5f6dffb7943dd452640111ddb3a56c","Message":"Enhance Gitea database backup script with relative paths, logging, and Docker checks; update scheduling script to include Docker check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:36:36-06:00"},"CompareURL":"b3/gitea-docker/compare/5f329bc7e385540150ef9c82a868ca947c5dd0fb...cba5e8167b5f6dffb7943dd452640111ddb3a56c","Len":1} 1745113017
178 4 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"cba5e8167b5f6dffb7943dd452640111ddb3a56c","Message":"Enhance Gitea database backup script with relative paths, logging, and Docker checks; update scheduling script to include Docker check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:36:36-06:00"}],"HeadCommit":{"Sha1":"cba5e8167b5f6dffb7943dd452640111ddb3a56c","Message":"Enhance Gitea database backup script with relative paths, logging, and Docker checks; update scheduling script to include Docker check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:36:36-06:00"},"CompareURL":"b3/gitea-docker/compare/5f329bc7e385540150ef9c82a868ca947c5dd0fb...cba5e8167b5f6dffb7943dd452640111ddb3a56c","Len":1} 1745113017
179 2 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"cba5e8167b5f6dffb7943dd452640111ddb3a56c","Message":"Enhance Gitea database backup script with relative paths, logging, and Docker checks; update scheduling script to include Docker check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:36:36-06:00"}],"HeadCommit":{"Sha1":"cba5e8167b5f6dffb7943dd452640111ddb3a56c","Message":"Enhance Gitea database backup script with relative paths, logging, and Docker checks; update scheduling script to include Docker check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:36:36-06:00"},"CompareURL":"b3/gitea-docker/compare/5f329bc7e385540150ef9c82a868ca947c5dd0fb...cba5e8167b5f6dffb7943dd452640111ddb3a56c","Len":1} 1745113018
180 3 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"cba5e8167b5f6dffb7943dd452640111ddb3a56c","Message":"Enhance Gitea database backup script with relative paths, logging, and Docker checks; update scheduling script to include Docker check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:36:36-06:00"}],"HeadCommit":{"Sha1":"cba5e8167b5f6dffb7943dd452640111ddb3a56c","Message":"Enhance Gitea database backup script with relative paths, logging, and Docker checks; update scheduling script to include Docker check\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:36:36-06:00"},"CompareURL":"b3/gitea-docker/compare/5f329bc7e385540150ef9c82a868ca947c5dd0fb...cba5e8167b5f6dffb7943dd452640111ddb3a56c","Len":1} 1745113018
181 1 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Message":"Refactor backup scripts to include redundant backup directory creation, improved logging, and ensure successful backup copying; update run script to execute both database and volume backups sequentially.\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:51:28-06:00"}],"HeadCommit":{"Sha1":"6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Message":"Refactor backup scripts to include redundant backup directory creation, improved logging, and ensure successful backup copying; update run script to execute both database and volume backups sequentially.\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:51:28-06:00"},"CompareURL":"b3/gitea-docker/compare/cba5e8167b5f6dffb7943dd452640111ddb3a56c...6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Len":1} 1745113923
182 4 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Message":"Refactor backup scripts to include redundant backup directory creation, improved logging, and ensure successful backup copying; update run script to execute both database and volume backups sequentially.\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:51:28-06:00"}],"HeadCommit":{"Sha1":"6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Message":"Refactor backup scripts to include redundant backup directory creation, improved logging, and ensure successful backup copying; update run script to execute both database and volume backups sequentially.\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:51:28-06:00"},"CompareURL":"b3/gitea-docker/compare/cba5e8167b5f6dffb7943dd452640111ddb3a56c...6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Len":1} 1745113923
183 2 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Message":"Refactor backup scripts to include redundant backup directory creation, improved logging, and ensure successful backup copying; update run script to execute both database and volume backups sequentially.\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:51:28-06:00"}],"HeadCommit":{"Sha1":"6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Message":"Refactor backup scripts to include redundant backup directory creation, improved logging, and ensure successful backup copying; update run script to execute both database and volume backups sequentially.\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:51:28-06:00"},"CompareURL":"b3/gitea-docker/compare/cba5e8167b5f6dffb7943dd452640111ddb3a56c...6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Len":1} 1745113923
184 3 5 1 4 0 f refs/heads/main f {"Commits":[{"Sha1":"6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Message":"Refactor backup scripts to include redundant backup directory creation, improved logging, and ensure successful backup copying; update run script to execute both database and volume backups sequentially.\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:51:28-06:00"}],"HeadCommit":{"Sha1":"6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Message":"Refactor backup scripts to include redundant backup directory creation, improved logging, and ensure successful backup copying; update run script to execute both database and volume backups sequentially.\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-19T19:51:28-06:00"},"CompareURL":"b3/gitea-docker/compare/cba5e8167b5f6dffb7943dd452640111ddb3a56c...6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46","Len":1} 1745113923
185 1 5 1 2 0 f refs/heads/crate4 t {"Commits":[{"Sha1":"d51de6b68445a7e99f96a9673b14e15ac105efee","Message":"mad progress\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-14T18:56:49-06:00"}],"HeadCommit":{"Sha1":"d51de6b68445a7e99f96a9673b14e15ac105efee","Message":"mad progress\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-14T18:56:49-06:00"},"CompareURL":"bee8333/b3stack/compare/ab911b021224beeec3c4e1c897131b54349db894...d51de6b68445a7e99f96a9673b14e15ac105efee","Len":1} 1745114246
186 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"0db957b42ded7f97b9aaf347a23b6d7130daef22","Message":"vault backup: 2025-04-19 22:52:07\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-19T22:52:07-06:00"}],"HeadCommit":{"Sha1":"0db957b42ded7f97b9aaf347a23b6d7130daef22","Message":"vault backup: 2025-04-19 22:52:07\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-19T22:52:07-06:00"},"CompareURL":"bee8333/beebrain/compare/32914297a4bfec93cdc91d3e3889c8c6ef166b1c...0db957b42ded7f97b9aaf347a23b6d7130daef22","Len":1} 1745124733
187 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"339cda4613164ae0412b5a892728c6d1ba6a3f57","Message":"vault backup: 2025-04-20 16:04:06\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-20T16:04:06-06:00"}],"HeadCommit":{"Sha1":"339cda4613164ae0412b5a892728c6d1ba6a3f57","Message":"vault backup: 2025-04-20 16:04:06\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-20T16:04:06-06:00"},"CompareURL":"bee8333/beebrain/compare/0db957b42ded7f97b9aaf347a23b6d7130daef22...339cda4613164ae0412b5a892728c6d1ba6a3f57","Len":1} 1745186662
188 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"f61eed7915ee117afc9ee842534e98f8f0db2489","Message":"vault backup: 2025-04-23 18:15:43\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-23T18:15:43-06:00"},{"Sha1":"b1e70dab70e791a1481f5ba5a162a2a3f085f544","Message":"vault backup: 2025-04-23 18:14:14\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-23T18:14:14-06:00"}],"HeadCommit":{"Sha1":"f61eed7915ee117afc9ee842534e98f8f0db2489","Message":"vault backup: 2025-04-23 18:15:43\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-23T18:15:43-06:00"},"CompareURL":"bee8333/beebrain/compare/339cda4613164ae0412b5a892728c6d1ba6a3f57...f61eed7915ee117afc9ee842534e98f8f0db2489","Len":2} 1745453748
189 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"fe48063b1690ed832f6d5588313c78d2178d1a86","Message":"vault backup: 2025-04-23 22:49:39\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-23T22:49:39-06:00"}],"HeadCommit":{"Sha1":"fe48063b1690ed832f6d5588313c78d2178d1a86","Message":"vault backup: 2025-04-23 22:49:39\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-23T22:49:39-06:00"},"CompareURL":"bee8333/beebrain/compare/f61eed7915ee117afc9ee842534e98f8f0db2489...fe48063b1690ed832f6d5588313c78d2178d1a86","Len":1} 1745470484
190 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"6f748e311401acb5360d0d71c7d1aab7664a71ef","Message":"vault backup: 2025-04-23 22:54:42\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-23T22:54:42-06:00"}],"HeadCommit":{"Sha1":"6f748e311401acb5360d0d71c7d1aab7664a71ef","Message":"vault backup: 2025-04-23 22:54:42\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-23T22:54:42-06:00"},"CompareURL":"bee8333/beebrain/compare/fe48063b1690ed832f6d5588313c78d2178d1a86...6f748e311401acb5360d0d71c7d1aab7664a71ef","Len":1} 1745470787
191 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"90f868ab70057784351d70d71274e260f42ce587","Message":"vault backup: 2025-04-27 10:08:14\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-27T10:08:14-06:00"}],"HeadCommit":{"Sha1":"90f868ab70057784351d70d71274e260f42ce587","Message":"vault backup: 2025-04-27 10:08:14\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-27T10:08:14-06:00"},"CompareURL":"bee8333/beebrain/compare/6f748e311401acb5360d0d71c7d1aab7664a71ef...90f868ab70057784351d70d71274e260f42ce587","Len":1} 1745770207
192 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"6ea92f92f4e402ecb5d49dfec9981c7efd1f7adb","Message":"vault backup: 2025-04-27 10:24:34\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-27T10:24:34-06:00"},{"Sha1":"084c802c393685092faac1f54f7bc29b33249876","Message":"vault backup: 2025-04-27 10:19:29\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-27T10:19:29-06:00"}],"HeadCommit":{"Sha1":"6ea92f92f4e402ecb5d49dfec9981c7efd1f7adb","Message":"vault backup: 2025-04-27 10:24:34\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-27T10:24:34-06:00"},"CompareURL":"bee8333/beebrain/compare/90f868ab70057784351d70d71274e260f42ce587...6ea92f92f4e402ecb5d49dfec9981c7efd1f7adb","Len":2} 1745771080
193 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"b383d2b80392fca4816492ce6efe166bae60684d","Message":"vault backup: 2025-04-27 10:26:21\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-27T10:26:22-06:00"}],"HeadCommit":{"Sha1":"b383d2b80392fca4816492ce6efe166bae60684d","Message":"vault backup: 2025-04-27 10:26:21\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-27T10:26:22-06:00"},"CompareURL":"bee8333/beebrain/compare/6ea92f92f4e402ecb5d49dfec9981c7efd1f7adb...b383d2b80392fca4816492ce6efe166bae60684d","Len":1} 1745771487
194 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"46f5166d8066bed5139f639e833c7f62d327e25f","Message":"vault backup: 2025-04-27 11:31:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-27T11:31:10-06:00"}],"HeadCommit":{"Sha1":"46f5166d8066bed5139f639e833c7f62d327e25f","Message":"vault backup: 2025-04-27 11:31:10\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-27T11:31:10-06:00"},"CompareURL":"bee8333/beebrain/compare/b383d2b80392fca4816492ce6efe166bae60684d...46f5166d8066bed5139f639e833c7f62d327e25f","Len":1} 1745775373
195 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"7c4fdfec77ca6d377f0059bb26a42a63493c28e5","Message":"f\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-27T12:20:18-06:00"}],"HeadCommit":{"Sha1":"7c4fdfec77ca6d377f0059bb26a42a63493c28e5","Message":"f\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bennettldavid","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bennettldavid","Timestamp":"2025-04-27T12:20:18-06:00"},"CompareURL":"bee8333/beebrain/compare/46f5166d8066bed5139f639e833c7f62d327e25f...7c4fdfec77ca6d377f0059bb26a42a63493c28e5","Len":1} 1745778033
196 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"c37c6a8070a1e6840782dda927a6be1b670fc63f","Message":"Merge remote-tracking branch 'origin/home' into home\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-05-18T09:25:40-06:00"},{"Sha1":"a05b6ae1f39c90f8ba8eb5944d084f60ae39906e","Message":"vault backup: 2025-04-27 12:06:31\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-04-27T12:06:31-06:00"}],"HeadCommit":{"Sha1":"c37c6a8070a1e6840782dda927a6be1b670fc63f","Message":"Merge remote-tracking branch 'origin/home' into home\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-05-18T09:25:40-06:00"},"CompareURL":"bee8333/beebrain/compare/7c4fdfec77ca6d377f0059bb26a42a63493c28e5...c37c6a8070a1e6840782dda927a6be1b670fc63f","Len":2} 1747581985
197 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"18ce5b617b18fdca2a2a76254efa1d3fe53f2bff","Message":"vault backup: 2025-05-18 09:26:30\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-05-18T09:26:30-06:00"}],"HeadCommit":{"Sha1":"18ce5b617b18fdca2a2a76254efa1d3fe53f2bff","Message":"vault backup: 2025-05-18 09:26:30\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-05-18T09:26:30-06:00"},"CompareURL":"bee8333/beebrain/compare/c37c6a8070a1e6840782dda927a6be1b670fc63f...18ce5b617b18fdca2a2a76254efa1d3fe53f2bff","Len":1} 1747581998
198 1 5 1 1 0 f refs/heads/home t {"Commits":[{"Sha1":"ad5d7d1c63423f0842db6a7a15b3a1cb5b76637e","Message":"vault backup: 2025-05-18 09:47:18\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-05-18T09:47:18-06:00"}],"HeadCommit":{"Sha1":"ad5d7d1c63423f0842db6a7a15b3a1cb5b76637e","Message":"vault backup: 2025-05-18 09:47:18\\n","AuthorEmail":"bennett.l.david@gmail.com","AuthorName":"bee8333","CommitterEmail":"bennett.l.david@gmail.com","CommitterName":"bee8333","Timestamp":"2025-05-18T09:47:18-06:00"},"CompareURL":"bee8333/beebrain/compare/18ce5b617b18fdca2a2a76254efa1d3fe53f2bff...ad5d7d1c63423f0842db6a7a15b3a1cb5b76637e","Len":1} 1747583242
\.
--
-- Data for Name: action_artifact; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_artifact (id, run_id, runner_id, repo_id, owner_id, commit_sha, storage_path, file_size, file_compressed_size, content_encoding, artifact_path, artifact_name, status, created_unix, updated_unix, expired_unix) FROM stdin;
\.
--
-- Data for Name: action_run; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_run (id, title, repo_id, owner_id, workflow_id, index, trigger_user_id, schedule_id, ref, commit_sha, is_fork_pull_request, need_approval, approved_by, event, event_payload, trigger_event, status, version, started, stopped, created, updated, previous_duration) FROM stdin;
1 attempt 1 1 sync-public.yml 1 1 0 refs/heads/home 88f66fd3481a0fb836f9437d57747c78609b4f71 f f 0 push {"ref":"refs/heads/home","before":"e2e9adcd9b90f50132671c7442953a84a031088f","after":"88f66fd3481a0fb836f9437d57747c78609b4f71","compare_url":"https://bee8333.ddns.net/bee8333/beebrain/compare/e2e9adcd9b90f50132671c7442953a84a031088f...88f66fd3481a0fb836f9437d57747c78609b4f71","commits":[{"id":"88f66fd3481a0fb836f9437d57747c78609b4f71","message":"attempt\\n","url":"https://bee8333.ddns.net/bee8333/beebrain/commit/88f66fd3481a0fb836f9437d57747c78609b4f71","author":{"name":"bennettldavid","email":"bennett.l.david@gmail.com","username":"bee8333"},"committer":{"name":"bennettldavid","email":"bennett.l.david@gmail.com","username":"bee8333"},"verification":null,"timestamp":"2025-03-08T21:43:47-07:00","added":["80 bank/share/flynnviz.md"],"removed":["Viz/flynnviz.md"],"modified":[]}],"total_commits":0,"head_commit":{"id":"88f66fd3481a0fb836f9437d57747c78609b4f71","message":"attempt\\n","url":"https://bee8333.ddns.net/bee8333/beebrain/commit/88f66fd3481a0fb836f9437d57747c78609b4f71","author":{"name":"bennettldavid","email":"bennett.l.david@gmail.com","username":"bee8333"},"committer":{"name":"bennettldavid","email":"bennett.l.david@gmail.com","username":"bee8333"},"verification":null,"timestamp":"2025-03-08T21:43:47-07:00","added":["80 bank/share/flynnviz.md"],"removed":["Viz/flynnviz.md"],"modified":[]},"repository":{"id":1,"owner":{"id":1,"login":"bee8333","login_name":"","source_id":0,"full_name":"","email":"bennett.l.david@gmail.com","avatar_url":"https://bee8333.ddns.net/avatars/5bb472150955e5fa15890cdee27d87f99a439e078abb33d13f780f71e99dfdfa","html_url":"https://bee8333.ddns.net/bee8333","language":"","is_admin":false,"last_login":"0001-01-01T00:00:00Z","created":"2025-02-23T15:30:33Z","restricted":false,"active":false,"prohibit_login":false,"location":"","website":"","description":"","visibility":"public","followers_count":1,"following_count":0,"starred_repos_count":0,"username":"bee8333"},"name":"beebrain","full_name":"bee8333/beebrain","description":"","empty":false,"private":true,"fork":false,"template":false,"parent":null,"mirror":false,"size":430523,"language":"","languages_url":"https://bee8333.ddns.net/api/v1/repos/bee8333/beebrain/languages","html_url":"https://bee8333.ddns.net/bee8333/beebrain","url":"https://bee8333.ddns.net/api/v1/repos/bee8333/beebrain","link":"","ssh_url":"ssh://git@bee8333.ddns.net:222/bee8333/beebrain.git","clone_url":"https://bee8333.ddns.net/bee8333/beebrain.git","original_url":"","website":"","stars_count":0,"forks_count":0,"watchers_count":1,"open_issues_count":0,"open_pr_counter":0,"release_counter":0,"default_branch":"home","archived":false,"created_at":"2025-02-23T15:36:32Z","updated_at":"2025-03-09T04:41:47Z","archived_at":"1970-01-01T00:00:00Z","permissions":{"admin":true,"push":true,"pull":true},"has_issues":true,"internal_tracker":{"enable_time_tracker":true,"allow_only_contributors_to_track_time":true,"enable_issue_dependencies":true},"has_wiki":true,"has_pull_requests":true,"has_projects":true,"projects_mode":"all","has_releases":true,"has_packages":true,"has_actions":true,"ignore_whitespace_conflicts":false,"allow_merge_commits":true,"allow_rebase":true,"allow_rebase_explicit":true,"allow_squash_merge":true,"allow_fast_forward_only_merge":true,"allow_rebase_update":true,"default_delete_branch_after_merge":false,"default_merge_style":"merge","default_allow_maintainer_edit":false,"avatar_url":"","internal":false,"mirror_interval":"","object_format_name":"sha1","mirror_updated":"0001-01-01T00:00:00Z","repo_transfer":null,"topics":null,"licenses":["MIT"]},"pusher":{"id":1,"login":"bee8333","login_name":"","source_id":0,"full_name":"","email":"bee8333@noreply.bee8333.ddns.net","avatar_url":"https://bee8333.ddns.net/avatars/5bb472150955e5fa15890cdee27d87f99a439e078abb33d13f780f71e99dfdfa","html_url":"https://bee8333.ddns.net/bee8333","language":"","is_admin":false,"last_login":"0001-01-01T00:00:00Z","created":"2025-02-23T15:30:33Z","restricted":false,"active":false,"prohibit_login":false,"location":"","website":"","description":"","visibility":"public","followers_count":1,"following_count":0,"starred_repos_count":0,"username":"bee8333"},"sender":{"id":1,"login":"bee8333","login_name":"","source_id":0,"full_name":"","email":"bee8333@noreply.bee8333.ddns.net","avatar_url":"https://bee8333.ddns.net/avatars/5bb472150955e5fa15890cdee27d87f99a439e078abb33d13f780f71e99dfdfa","html_url":"https://bee8333.ddns.net/bee8333","language":"","is_admin":false,"last_login":"0001-01-01T00:00:00Z","created":"2025-02-23T15:30:33Z","restricted":false,"active":false,"prohibit_login":false,"location":"","website":"","description":"","visibility":"public","followers_count":1,"following_count":0,"starred_repos_count":0,"username":"bee8333"}} push 3 2 0 1741596043 1741495432 1741596043 0
\.
--
-- Data for Name: action_run_index; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_run_index (group_id, max_index) FROM stdin;
1 1
\.
--
-- Data for Name: action_run_job; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_run_job (id, run_id, repo_id, owner_id, commit_sha, is_fork_pull_request, name, attempt, workflow_payload, job_id, needs, runs_on, task_id, status, started, stopped, created, updated) FROM stdin;
1 1 1 1 88f66fd3481a0fb836f9437d57747c78609b4f71 f sync 0 \\x6e616d653a2053796e6368726f6e697a65204b6e6f776c6564676520446f6d61696e0a226f6e223a0a20202020707573683a0a20202020202020206272616e636865733a205b686f6d655d0a202020202020202070617468733a0a2020202020202020202020202d202738302062616e6b2f73686172652f2a2a270a6a6f62733a0a2020202073796e633a0a20202020202020206e616d653a2073796e630a202020202020202072756e732d6f6e3a207562756e74752d6c61746573740a202020202020202073746570733a0a2020202020202020202020202d20757365733a20616374696f6e732f636865636b6f75744076330a2020202020202020202020202020776974683a0a2020202020202020202020202020202066657463682d64657074683a202230220a2020202020202020202020202d206e616d653a2045737461626c69736820457865637574696f6e20436f6e746578740a202020202020202020202020202072756e3a207c0a202020202020202020202020202020206563686f2022496e6974696174696e672073796e6368726f6e697a6174696f6e2070726f636573732e2e2e220a2020202020202020202020202020202067697420636f6e66696720757365722e6e616d65202262656538333333220a2020202020202020202020202020202067697420636f6e66696720757365722e656d61696c202262656e6e6574742e6c2e646176696440676d61696c2e636f6d220a2020202020202020202020202d206e616d653a20446961676e6f73746963204578616d696e6174696f6e0a202020202020202020202020202072756e3a207c0a202020202020202020202020202020206563686f20225265706f7369746f7279207374617465206578616d696e6174696f6e3a220a202020202020202020202020202020206563686f202243757272656e74206272616e63683a202428676974206272616e6368202d2d73686f772d63757272656e7429220a202020202020202020202020202020206563686f2022526563656e74206d6f64696669636174696f6e733a220a20202020202020202020202020202020676974206c6f67202d33202d2d6e616d652d6f6e6c79202d2d6f6e656c696e65207c2067726570202238302062616e6b2f736861726522207c7c206563686f20224e6f20726563656e74206368616e67657320646574656374656420696e207461726765742070617468220a2020202020202020202020202d206e616d653a204b6e6f776c6564676520446f6d61696e2045787472616374696f6e0a202020202020202020202020202072756e3a207c0a202020202020202020202020202020206563686f202249736f6c6174696e67206b6e6f776c6564676520646f6d61696e2e2e2e220a2020202020202020202020202020202067697420737562747265652073706c6974202d2d7072656669783d2238302062616e6b2f736861726522202d62207075626c69632d6272616e63680a202020202020202020202020202020206563686f20224b6e6f776c6564676520646f6d61696e2069736f6c6174656420746f20277075626c69632d6272616e636827220a2020202020202020202020202d206e616d653a204b6e6f776c656467652050726f7061676174696f6e0a202020202020202020202020202072756e3a207c2d0a202020202020202020202020202020206563686f2022496e6974696174696e67206b6e6f776c656467652070726f7061676174696f6e2e2e2e220a2020202020202020202020202020202067697420707573682068747470733a2f2f6f61757468323a247b7b20736563726574732e5055424c49435f5245504f5f544f4b454e207d7d40626565383333332e64646e732e6e65743a333030302f626565383333332f623373686172652e676974207075626c69632d6272616e63683a70726f640a202020202020202020202020202020206563686f202250726f7061676174696f6e20646972656374697665206973737565642e220a sync null ["ubuntu-latest"] 0 3 0 1741596043 1741495432 1741596043
\.
--
-- Data for Name: action_runner; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_runner (id, uuid, name, version, owner_id, repo_id, description, base, repo_range, token_hash, token_salt, last_online, last_active, agent_labels, created, updated, deleted) FROM stdin;
\.
--
-- Data for Name: action_runner_token; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_runner_token (id, token, owner_id, repo_id, is_active, created, updated, deleted) FROM stdin;
1 NLzMyfAfSwLMHzm022p82y9ct67IaRul5JxzxVnG 0 1 t 1741494604 1741494604 \N
2 uldITYSl3rPW9kEN7z30VvnYwhWx8QZduWreT1Uf 1 0 t 1741495029 1741495029 \N
\.
--
-- Data for Name: action_schedule; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_schedule (id, title, specs, repo_id, owner_id, workflow_id, trigger_user_id, ref, commit_sha, event, event_payload, content, created, updated) FROM stdin;
\.
--
-- Data for Name: action_schedule_spec; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_schedule_spec (id, repo_id, schedule_id, next, prev, spec, created, updated) FROM stdin;
\.
--
-- Data for Name: action_task; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_task (id, job_id, attempt, runner_id, status, started, stopped, repo_id, owner_id, commit_sha, is_fork_pull_request, token_hash, token_salt, token_last_eight, log_filename, log_in_storage, log_length, log_size, log_indexes, log_expired, created, updated) FROM stdin;
\.
--
-- Data for Name: action_task_output; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_task_output (id, task_id, output_key, output_value) FROM stdin;
\.
--
-- Data for Name: action_task_step; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_task_step (id, name, task_id, index, repo_id, status, log_index, log_length, started, stopped, created, updated) FROM stdin;
\.
--
-- Data for Name: action_tasks_version; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_tasks_version (id, owner_id, repo_id, version, created_unix, updated_unix) FROM stdin;
1 0 0 1 1741495432 1741495432
2 1 0 1 1741495432 1741495432
3 0 1 1 1741495432 1741495432
\.
--
-- Data for Name: action_variable; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.action_variable (id, owner_id, repo_id, name, data, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: app_state; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.app_state (id, revision, content) FROM stdin;
runtime-state 0 {"last_app_path":"/usr/local/bin/gitea","last_custom_conf":"/data/gitea/conf/app.ini"}
\.
--
-- Data for Name: attachment; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.attachment (id, uuid, repo_id, issue_id, release_id, uploader_id, comment_id, name, download_count, size, created_unix) FROM stdin;
\.
--
-- Data for Name: auth_token; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.auth_token (id, token_hash, user_id, expires_unix) FROM stdin;
h8DsyzdcL3 3b483bd3770e271b99aca606ee4cf404b4a38a2fc69543336e3f1822b7b8388d 1 1750231829
hfyVWtjVaw 6a79a36dfa019a17130edfff1bcc1fda572e0212903aa12390fb2c68eb6a10e8 1 1750547985
HHxJAWeABT 91617ff31c05196596a891193d930bcbf67bd494a0593f6ca347d60fc578c79b 1 1750565470
\.
--
-- Data for Name: badge; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.badge (id, description, image_url, slug) FROM stdin;
\.
--
-- Data for Name: branch; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.branch (id, repo_id, name, commit_id, commit_message, pusher_id, is_deleted, deleted_by_id, deleted_unix, commit_time, created_unix, updated_unix) FROM stdin;
2 1 obsidian-git 4ab85ff71e5df571f664b2882312eae5077ade47 vault backup: 2025-02-15 19:17:51 1 f 0 0 1739672271 1740326690 1740326690
3 1 ftimapple 67ed4b887b78d3d75e355274853444de41d7263e leaving corp cloud 1 f 0 0 1739668934 1740326690 1740326690
4 2 home d0a528211d07cde8222870f6582ac58d5056fb74 Add genius-lyrics crate and update README with usage instructions 1 f 0 0 1741956412 1740340558 1741956416
5 1 home-remote 389d72af1ff2629e1573e76fdea30ffd2949cbe6 Add .git_backup/ to gitignore 1 f 0 0 1740849272 1740849274 1740849274
12 2 crate02 22718fdc0533b54e2514893f87cd2ee2321de2c5 progress 1 f 0 0 1745112427 1745112435 1745112435
8 4 main 6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46 Refactor backup scripts to include redundant backup directory creation, improved logging, and ensure successful backup copying; update run script to execute both database and volume backups sequentially. 1 f 0 0 1745113888 1740939637 1745113922
11 6 prod f74bab9ed4f586f6291d11b69fbcae13f5cc6efb # 2ticketss 1 f 0 0 1743827569 1743823092 1743827684
10 2 crate4 d51de6b68445a7e99f96a9673b14e15ac105efee mad progress 1 f 0 0 1744678609 1742245502 1745114245
7 3 b3_animate 10bcc9b163f6dd3afccc473fac887e82e15a97dc readme+ 1 f 0 0 1740873339 1740873370 1740873370
9 5 prod df5e7cc2f3a3441566cdd76ca92d57ade90e6a02 Initial commit 1 f 0 0 1741494652 1741494653 1741494653
6 3 master ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c Merge pull request 'Bounce+' (#1) from b3_animate into master 2 f 0 0 1740957486 1740870466 1740957487
1 1 home ad5d7d1c63423f0842db6a7a15b3a1cb5b76637e vault backup: 2025-05-18 09:47:18 1 f 0 0 1747583238 1740326689 1747583240
\.
--
-- Data for Name: collaboration; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.collaboration (id, repo_id, user_id, mode, created_unix, updated_unix) FROM stdin;
1 3 2 3 1740953874 1740953877
\.
--
-- Data for Name: comment; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.comment (id, type, poster_id, original_author, original_author_id, issue_id, label_id, old_project_id, project_id, old_milestone_id, milestone_id, time_id, assignee_id, removed_assignee, assignee_team_id, resolve_doer_id, old_title, new_title, old_ref, new_ref, dependent_issue_id, commit_id, line, tree_path, content, patch, created_unix, updated_unix, commit_sha, review_id, invalidated, ref_repo_id, ref_issue_id, ref_comment_id, ref_action, ref_is_pull, content_version, comment_meta_data) FROM stdin;
1 29 1 0 1 0 0 0 0 0 0 0 f 0 0 0 0 0 {"is_force_push":false,"commit_ids":["c6b08a089d5e4b7f876aa6c9d098d7c7beebd52e","10bcc9b163f6dd3afccc473fac887e82e15a97dc"]} 1740873522 1740873522 0 f 0 0 0 0 f 0 \N
2 28 2 0 1 0 0 0 0 0 0 0 f 0 0 0 0 0 1740957487 1740957487 0 f 0 0 0 0 f 0 \N
3 4 2 0 1 0 0 0 0 0 0 0 f 0 0 0 0 0 <a href="/bee8333/bounce/commit/ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c">Merge pull request &#39;Bounce+&#39; (#1) from b3_animate into master</a> 1740957489 1740957489 ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c 0 f 0 0 0 0 f 0 \N
\.
--
-- Data for Name: commit_status; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.commit_status (id, index, repo_id, state, sha, target_url, description, context_hash, context, creator_id, created_unix, updated_unix) FROM stdin;
1 1 1 pending 88f66fd3481a0fb836f9437d57747c78609b4f71 /bee8333/beebrain/actions/runs/1/jobs/0 Waiting to run 48fa4f59437acdbab04ea1fbd91e4192e42ab26c Synchronize Knowledge Domain / sync (push) -2 1741495432 1741495432
2 2 1 failure 88f66fd3481a0fb836f9437d57747c78609b4f71 /bee8333/beebrain/actions/runs/1/jobs/0 Has been cancelled 48fa4f59437acdbab04ea1fbd91e4192e42ab26c Synchronize Knowledge Domain / sync (push) -2 1741596043 1741596043
\.
--
-- Data for Name: commit_status_index; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.commit_status_index (id, repo_id, sha, max_index) FROM stdin;
1 1 88f66fd3481a0fb836f9437d57747c78609b4f71 2
\.
--
-- Data for Name: commit_status_summary; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.commit_status_summary (id, repo_id, sha, state, target_url) FROM stdin;
1 1 88f66fd3481a0fb836f9437d57747c78609b4f71 failure /bee8333/beebrain/actions/runs/1/jobs/0
\.
--
-- Data for Name: dbfs_data; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.dbfs_data (id, revision, meta_id, blob_offset, blob_size, blob_data) FROM stdin;
\.
--
-- Data for Name: dbfs_meta; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.dbfs_meta (id, full_path, block_size, file_size, create_timestamp, modify_timestamp) FROM stdin;
\.
--
-- Data for Name: deploy_key; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.deploy_key (id, key_id, repo_id, name, fingerprint, mode, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: email_address; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.email_address (id, uid, email, lower_email, is_activated, is_primary) FROM stdin;
1 1 bennett.l.david@gmail.com bennett.l.david@gmail.com t t
2 2 rachelawhite53@gmail.com rachelawhite53@gmail.com t t
3 3 bdavidgiants10@gmail.com bdavidgiants10@gmail.com t t
\.
--
-- Data for Name: email_hash; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.email_hash (hash, email) FROM stdin;
\.
--
-- Data for Name: external_login_user; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.external_login_user (external_id, user_id, login_source_id, raw_data, provider, email, name, first_name, last_name, nick_name, description, avatar_url, location, access_token, access_token_secret, refresh_token, expires_at) FROM stdin;
\.
--
-- Data for Name: follow; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.follow (id, user_id, follow_id, created_unix) FROM stdin;
1 2 1 1740941327
2 3 4 1743228634
\.
--
-- Data for Name: gpg_key; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.gpg_key (id, owner_id, key_id, primary_key_id, content, created_unix, expired_unix, added_unix, emails, verified, can_sign, can_encrypt_comms, can_encrypt_storage, can_certify) FROM stdin;
\.
--
-- Data for Name: gpg_key_import; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.gpg_key_import (key_id, content) FROM stdin;
\.
--
-- Data for Name: hook_task; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.hook_task (id, hook_id, uuid, payload_content, event_type, is_delivered, delivered, is_succeed, request_content, response_content, payload_version) FROM stdin;
\.
--
-- Data for Name: issue; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.issue (id, repo_id, index, poster_id, original_author, original_author_id, name, content, milestone_id, priority, is_closed, is_pull, num_comments, ref, pin_order, deadline_unix, created_unix, updated_unix, closed_unix, is_locked, content_version, time_estimate) FROM stdin;
1 3 1 1 0 Bounce+ # Add Animation Capabilities and Project Structure\n\n## Overview\nPR takes the original static ball bounce analysis and adds an interactive animated visualization by adding new animation capabilities and reorganizing the project structure for maintainability.\n\n## Key Changes\n- Created new animation scripts to visualize what was previously only static plots\n- Added two types of animations:\n - Position vs. time plots (previously static graphs only)\n - Physics-based bouncing ball simulations (new feature)\n- Restructured project into modular components (data, analysis, visualization, utils)\n- Created unified command-line interface for running animations\n\n## New Animation Features\n- Real-time visualization of ball trajectories\n- Interactive controls for:\n - Selecting ball types (golf, lacrosse, metal)\n - Saving animations as GIF files\n - Customizing animation parameters\n- Preserved original static analysis while adding animated counterparts\n\n## Technical Details\n- Created new directory structure for organization\n- Original static analysis scripts remain unchanged & accessible\n- Added virtual environment setup instructions\n- Included requirements.txt for new animation dependencies\n\n## Testing\nBoth original static analysis and new animations have been tested across different ball types and drop heights.\n\n## Documentation\nAdded detailed README.md with:\n- Project structure explanation\n- Setup instructions\n- Usage examples for both static and animated analysis\n- Physics background\n- Customization options 0 0 t t 0 0 0 1740873520 1740957489 1740957487 f 1 0
\.
--
-- Data for Name: issue_assignees; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.issue_assignees (id, assignee_id, issue_id) FROM stdin;
\.
--
-- Data for Name: issue_content_history; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.issue_content_history (id, poster_id, issue_id, comment_id, edited_unix, content_text, is_first_created, is_deleted) FROM stdin;
1 1 1 0 1740873520 # Add Animation Capabilities and Project Structure\r\n\r\n## Overview PR takes the original static ball bounce analysis and adds an interactive animated visualization by adding new animation capabilities and reorganizing the project structure for maintainability.\r\n\r\n## Key Changes\r\n- Created new animation scripts to visualize what was previously only static plots\r\n- Added two types of animations:\r\n - Position vs. time plots (previously static graphs only)\r\n - Physics-based bouncing ball simulations (new feature)\r\n- Restructured project into modular components (data, analysis, visualization, utils)\r\n- Created unified command-line interface for running animations\r\n\r\n## New Animation Features\r\n- Real-time visualization of ball trajectories\r\n- Interactive controls for:\r\n - Selecting ball types (golf, lacrosse, metal)\r\n - Saving animations as GIF files\r\n - Customizing animation parameters\r\n- Preserved original static analysis while adding animated counterparts\r\n\r\n## Technical Details\r\n- Created new directory structure for organization\r\n- Original static analysis scripts remain unchanged & accessible\r\n- Added virtual environment setup instructions\r\n- Included requirements.txt for new animation dependencies\r\n\r\n## Testing\r\nBoth original static analysis and new animations have been tested across different ball types and drop heights.\r\n\r\n## Documentation\r\nAdded detailed README.md with:\r\n- Project structure explanation\r\n- Setup instructions\r\n- Usage examples for both static and animated analysis\r\n- Physics background\r\n- Customization options t f
2 1 1 0 1740876015 # Add Animation Capabilities and Project Structure\n\n## Overview\nPR takes the original static ball bounce analysis and adds an interactive animated visualization by adding new animation capabilities and reorganizing the project structure for maintainability.\n\n## Key Changes\n- Created new animation scripts to visualize what was previously only static plots\n- Added two types of animations:\n - Position vs. time plots (previously static graphs only)\n - Physics-based bouncing ball simulations (new feature)\n- Restructured project into modular components (data, analysis, visualization, utils)\n- Created unified command-line interface for running animations\n\n## New Animation Features\n- Real-time visualization of ball trajectories\n- Interactive controls for:\n - Selecting ball types (golf, lacrosse, metal)\n - Saving animations as GIF files\n - Customizing animation parameters\n- Preserved original static analysis while adding animated counterparts\n\n## Technical Details\n- Created new directory structure for organization\n- Original static analysis scripts remain unchanged & accessible\n- Added virtual environment setup instructions\n- Included requirements.txt for new animation dependencies\n\n## Testing\nBoth original static analysis and new animations have been tested across different ball types and drop heights.\n\n## Documentation\nAdded detailed README.md with:\n- Project structure explanation\n- Setup instructions\n- Usage examples for both static and animated analysis\n- Physics background\n- Customization options f f
\.
--
-- Data for Name: issue_dependency; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.issue_dependency (id, user_id, issue_id, dependency_id, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: issue_index; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.issue_index (group_id, max_index) FROM stdin;
3 1
\.
--
-- Data for Name: issue_label; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.issue_label (id, issue_id, label_id) FROM stdin;
\.
--
-- Data for Name: issue_user; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.issue_user (id, uid, issue_id, is_read, is_mentioned) FROM stdin;
1 1 1 t f
\.
--
-- Data for Name: issue_watch; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.issue_watch (id, user_id, issue_id, is_watching, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: label; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.label (id, repo_id, org_id, name, exclusive, description, color, num_issues, num_closed_issues, created_unix, updated_unix, archived_unix) FROM stdin;
\.
--
-- Data for Name: language_stat; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.language_stat (id, repo_id, commit_id, is_primary, language, size, created_unix) FROM stdin;
9 1 ad5d7d1c63423f0842db6a7a15b3a1cb5b76637e f Shell 3011 1740931442
15 1 ad5d7d1c63423f0842db6a7a15b3a1cb5b76637e f MDX 22102 1743993228
16 1 ad5d7d1c63423f0842db6a7a15b3a1cb5b76637e t JavaScript 35419 1744005166
14 6 f74bab9ed4f586f6291d11b69fbcae13f5cc6efb t Rust 49461 1743827688
11 3 ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c f Jupyter Notebook 10286 1740957491
8 3 ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c t Python 107966 1740870747
10 4 6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46 t PowerShell 19506 1740939639
5 2 d0a528211d07cde8222870f6582ac58d5056fb74 f LLVM 2791 1740343100
6 2 d0a528211d07cde8222870f6582ac58d5056fb74 f Rust 67617 1740343100
13 2 d0a528211d07cde8222870f6582ac58d5056fb74 f Python 4270 1741497651
2 2 d0a528211d07cde8222870f6582ac58d5056fb74 f Batchfile 2109 1740343100
12 2 d0a528211d07cde8222870f6582ac58d5056fb74 f PowerShell 1900 1741497651
7 2 d0a528211d07cde8222870f6582ac58d5056fb74 f Shell 485 1740343100
3 2 d0a528211d07cde8222870f6582ac58d5056fb74 f Java 177 1740343100
4 2 d0a528211d07cde8222870f6582ac58d5056fb74 t Makefile 100233 1740343100
\.
--
-- Data for Name: lfs_lock; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.lfs_lock (id, repo_id, owner_id, path, created) FROM stdin;
\.
--
-- Data for Name: lfs_meta_object; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.lfs_meta_object (id, oid, size, repository_id, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: login_source; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.login_source (id, type, name, is_active, is_sync_enabled, cfg, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: milestone; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.milestone (id, repo_id, name, content, is_closed, num_issues, num_closed_issues, completeness, created_unix, updated_unix, deadline_unix, closed_date_unix) FROM stdin;
\.
--
-- Data for Name: mirror; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.mirror (id, repo_id, "interval", enable_prune, updated_unix, next_update_unix, lfs_enabled, lfs_endpoint, remote_address) FROM stdin;
\.
--
-- Data for Name: notice; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.notice (id, type, description, created_unix) FROM stdin;
\.
--
-- Data for Name: notification; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.notification (id, user_id, repo_id, status, source, issue_id, commit_id, comment_id, updated_by, created_unix, updated_unix) FROM stdin;
1 1 3 2 2 1 0 2 1740957489 1741139460
3 1 5 2 4 0 0 3 1743228470 1743228480
2 1 5 2 4 0 0 3 1743228390 1743229257
\.
--
-- Data for Name: oauth2_application; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.oauth2_application (id, uid, name, client_id, client_secret, confidential_client, redirect_uris, created_unix, updated_unix, skip_secondary_authorization) FROM stdin;
1 0 git-credential-oauth a4792ccc-144e-407e-86c9-5e7d8d9c3269 f ["http://127.0.0.1","https://127.0.0.1"] 1740323654 1740323654 f
2 0 Git Credential Manager e90ee53c-94e2-48ac-9358-a874fb9e0662 f ["http://127.0.0.1","https://127.0.0.1"] 1740323654 1740323654 f
34 0 tea d57cb8c4-630c-4168-8324-ec79935e18d4 f ["http://127.0.0.1","https://127.0.0.1"] 1740324656 1740324656 f
\.
--
-- Data for Name: oauth2_authorization_code; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.oauth2_authorization_code (id, grant_id, code, code_challenge, code_challenge_method, redirect_uri, valid_until) FROM stdin;
\.
--
-- Data for Name: oauth2_grant; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.oauth2_grant (id, user_id, application_id, counter, scope, nonce, created_unix, updated_unix) FROM stdin;
1 1 2 0 1740343470 1740343470
\.
--
-- Data for Name: org_user; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.org_user (id, uid, org_id, is_public) FROM stdin;
1 1 4 t
2 3 4 f
3 2 4 f
\.
--
-- Data for Name: package; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.package (id, owner_id, repo_id, type, name, lower_name, semver_compatible, is_internal) FROM stdin;
\.
--
-- Data for Name: package_blob; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.package_blob (id, size, hash_md5, hash_sha1, hash_sha256, hash_sha512, created_unix) FROM stdin;
\.
--
-- Data for Name: package_blob_upload; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.package_blob_upload (id, bytes_received, hash_state_bytes, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: package_cleanup_rule; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.package_cleanup_rule (id, enabled, owner_id, type, keep_count, keep_pattern, remove_days, remove_pattern, match_full_name, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: package_file; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.package_file (id, version_id, blob_id, name, lower_name, composite_key, is_lead, created_unix) FROM stdin;
\.
--
-- Data for Name: package_property; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.package_property (id, ref_type, ref_id, name, value) FROM stdin;
\.
--
-- Data for Name: package_version; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.package_version (id, package_id, creator_id, version, lower_version, created_unix, is_internal, metadata_json, download_count) FROM stdin;
\.
--
-- Data for Name: project; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.project (id, title, description, owner_id, repo_id, creator_id, is_closed, board_type, card_type, type, created_unix, updated_unix, closed_date_unix) FROM stdin;
\.
--
-- Data for Name: project_board; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.project_board (id, title, "default", sorting, color, project_id, creator_id, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: project_issue; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.project_issue (id, issue_id, project_id, project_board_id, sorting) FROM stdin;
\.
--
-- Data for Name: protected_branch; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.protected_branch (id, repo_id, branch_name, can_push, enable_whitelist, whitelist_user_i_ds, whitelist_team_i_ds, enable_merge_whitelist, whitelist_deploy_keys, merge_whitelist_user_i_ds, merge_whitelist_team_i_ds, enable_status_check, status_check_contexts, enable_approvals_whitelist, approvals_whitelist_user_i_ds, approvals_whitelist_team_i_ds, required_approvals, block_on_rejected_reviews, block_on_official_review_requests, block_on_outdated_branch, dismiss_stale_approvals, require_signed_commits, protected_file_patterns, unprotected_file_patterns, created_unix, updated_unix, ignore_stale_approvals, can_force_push, enable_force_push_allowlist, force_push_allowlist_user_i_ds, force_push_allowlist_team_i_ds, force_push_allowlist_deploy_keys, block_admin_merge_override, priority) FROM stdin;
\.
--
-- Data for Name: protected_tag; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.protected_tag (id, repo_id, name_pattern, allowlist_user_i_ds, allowlist_team_i_ds, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: public_key; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.public_key (id, owner_id, name, fingerprint, content, mode, type, login_source_id, created_unix, updated_unix, verified) FROM stdin;
1 1 beeGO SHA256:pcmnYkW3EyJe4RrE1wjgwEB8TtpedAgbI87d8jyFd1U ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJbhupGwZ8gbsIT5trTP5knVJuIDlTi30HlA3jIZCZUe bennett.l.david@gmail.com 2 1 0 1740325194 1740335143 f
2 1 beeSERVE SHA256:EOdy5+rA6LQXB3oJdKETfU/NgHv/iaY/trj1irUKICE ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMumpjhTEm4v1B2t8Qj01dxKSLyfguQeLHQsk4xlu7FU bennett.l.david@gmail.com 2 1 0 1740927182 1740927193 f
3 1 beePC SHA256:qXDoqRmKt+uFe4FOIHCbHd3MR6xfoq8okzTAncDHQJ0 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCq9K/xZPFNseExCUpW/WdeS4LOsnK1Eeg+/Jrg1qNYoghiS74lfQAoHgX0jLfYttOM+3Aab9tRsfBM3Y6O1QEtWuQZJp63Wd1I2u3GetBwFz4HscCJ020L2kvDVVq0R14cbgREvyiN6EaNVIZEFR9BeVGdBUObYnxRmnThFhgmeXz0eDZXaHQefmKy9YLCuOLDNFEIuERtBMTtO7/r/A/oVvyCh6AIhBSuEc01jvOdRjoxj6TsIWlRytz85KA53YQcm6YEBNyNeJw13eD7o/o3hdKPnw1Bnfdqo73hwGBbqj54euuGfrJm+72SElRTwr+JGrwLYgp4TRUitwMR8lbY7+T8Nd1pu6YFKPkd9l2OasJpbRrA0K8X7koX96wpBrAjph1so1FiurHaEAznjQa/NMyNj+OH4SvQ17ODmH1wSYS7ZIEWbCkvolfbBC1KvDrRgDkJcIas7cWz5F1nj6MP+7gA0nAYru5+dDNG7+4+AvBMw6Q2XK+OAH16+WXpFAewjhWgzxFKGXxsmOicXqs0SZACOEfhfMOkaFRMLDcj4IL1Ex+d6t80Udv/0XJD1wz+RcYpJGoiCqg6QPtfU4itFLm8CzNkKdc0I0IPtWkR3PdlChYLpKZ5aKL+4lc2UiqNYWj8ZZXYNhIMnpQk6Jj7x0ROSHwrCBx4PaGpzqNBvQ== bennett.l.david@gmail.com 2 1 0 1741436881 1741436881 f
4 1 bRAZR SHA256:SxRNNhHvVCYUHkhrN9YsmbH9NqoqS1bsk5gMVcY5tdo ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILIjKtVL0cmVqe47bYeh0qCYC6vXJay8EAaVDUNUFrb6 bennett.l.david@gmail.com 2 1 0 1743225387 1743225394 f
5 1 beeMINI SHA256:yUxmHrP17yunsApX/dHCXH+s5inda+pH0UaNryd0nY8 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHwiHl+TrdPhMJ9/UVNZ43ck9RJVH5ZPOWuJ4xSXcrya bennett.l.david@gmail.com 2 1 0 1746255466 1746255466 f
\.
--
-- Data for Name: pull_auto_merge; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.pull_auto_merge (id, pull_id, doer_id, merge_style, message, created_unix) FROM stdin;
\.
--
-- Data for Name: pull_request; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.pull_request (id, type, status, conflicted_files, commits_ahead, commits_behind, changed_protected_files, issue_id, index, head_repo_id, base_repo_id, head_branch, base_branch, merge_base, allow_maintainer_edit, has_merged, merged_commit_id, merger_id, merged_unix, flow) FROM stdin;
1 0 2 [] 2 0 null 1 1 3 3 b3_animate master 3cf0e16c3562e0e40bbdb99de418bf12cb032063 f t ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c 2 1740957487 0
\.
--
-- Data for Name: push_mirror; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.push_mirror (id, repo_id, remote_name, remote_address, sync_on_commit, "interval", created_unix, last_update, last_error) FROM stdin;
\.
--
-- Data for Name: reaction; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.reaction (id, type, issue_id, comment_id, user_id, original_author_id, original_author, created_unix) FROM stdin;
\.
--
-- Data for Name: release; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.release (id, repo_id, publisher_id, tag_name, original_author, original_author_id, lower_tag_name, target, title, sha1, num_commits, note, is_draft, is_prerelease, is_tag, created_unix) FROM stdin;
\.
--
-- Data for Name: renamed_branch; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.renamed_branch (id, repo_id, "from", "to", created_unix) FROM stdin;
\.
--
-- Data for Name: repo_archiver; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.repo_archiver (id, repo_id, type, status, commit_id, created_unix) FROM stdin;
\.
--
-- Data for Name: repo_indexer_status; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.repo_indexer_status (id, repo_id, commit_sha, indexer_type) FROM stdin;
6 4 6695ad06a6a06047d4ea1bb7c53d7c41c9a38a46 1
7 5 df5e7cc2f3a3441566cdd76ca92d57ade90e6a02 1
4 2 d0a528211d07cde8222870f6582ac58d5056fb74 1
1 1 ad5d7d1c63423f0842db6a7a15b3a1cb5b76637e 1
5 3 ae2f9a9e0064ad5233e5cf4b5b26149c6e1be32c 1
8 6 f74bab9ed4f586f6291d11b69fbcae13f5cc6efb 1
2 1 074cd2d6972c0b998d238429762362dd22e4dcbb 1
3 1 94d9138d5697609fc422e7948a8a85ad753fb345 1
\.
--
-- Data for Name: repo_license; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.repo_license (id, repo_id, commit_id, license, created_unix, updated_unix) FROM stdin;
3 5 df5e7cc2f3a3441566cdd76ca92d57ade90e6a02\n MIT 1741494653 1741494653
1 2 d0a528211d07cde8222870f6582ac58d5056fb74 MIT 1740340558 1741956416
4 6 f74bab9ed4f586f6291d11b69fbcae13f5cc6efb MIT 1743823092 1743827686
2 1 ad5d7d1c63423f0842db6a7a15b3a1cb5b76637e MIT 1740804844 1747583242
\.
--
-- Data for Name: repo_redirect; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.repo_redirect (id, owner_id, lower_name, redirect_repo_id) FROM stdin;
2 1 bounce 3
3 3 b3share 5
4 1 b3share 5
5 1 gitea-docker 4
6 1 2ticketss 6
\.
--
-- Data for Name: repo_topic; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.repo_topic (repo_id, topic_id) FROM stdin;
\.
--
-- Data for Name: repo_transfer; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.repo_transfer (id, doer_id, recipient_id, repo_id, team_i_ds, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: repo_unit; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.repo_unit (id, repo_id, type, config, created_unix, everyone_access_mode) FROM stdin;
1 1 1 \N 1740324992 0
2 1 2 {"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true} 1740324992 0
3 1 3 {"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowFastForwardOnly":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false} 1740324992 0
4 1 4 \N 1740324992 0
5 1 5 \N 1740324992 0
6 1 8 {"ProjectsMode":"all"} 1740324992 0
7 1 9 \N 1740324992 0
8 1 10 \N 1740324992 0
9 2 1 \N 1740340557 0
10 2 2 {"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true} 1740340557 0
11 2 3 {"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowFastForwardOnly":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false} 1740340557 0
12 2 4 \N 1740340557 0
13 2 5 \N 1740340557 0
14 2 8 {"ProjectsMode":"all"} 1740340557 0
15 2 9 \N 1740340557 0
16 2 10 \N 1740340557 0
17 3 1 \N 1740870465 0
18 3 2 {"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true} 1740870465 0
19 3 3 {"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowFastForwardOnly":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false} 1740870465 0
20 3 4 \N 1740870465 0
21 3 5 \N 1740870465 0
22 3 8 {"ProjectsMode":"all"} 1740870465 0
23 3 9 \N 1740870465 0
24 3 10 \N 1740870465 0
25 4 1 \N 1740926103 0
26 4 2 {"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true} 1740926103 0
27 4 3 {"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowFastForwardOnly":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false} 1740926103 0
28 4 4 \N 1740926103 0
29 4 5 \N 1740926103 0
30 4 8 {"ProjectsMode":"all"} 1740926103 0
31 4 9 \N 1740926103 0
32 4 10 \N 1740926103 0
33 5 1 \N 1741494652 0
34 5 2 {"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true} 1741494652 0
35 5 3 {"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowFastForwardOnly":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false} 1741494652 0
36 5 4 \N 1741494652 0
37 5 5 \N 1741494652 0
38 5 8 {"ProjectsMode":"all"} 1741494652 0
39 5 9 \N 1741494652 0
40 5 10 \N 1741494652 0
41 6 1 \N 1743823092 0
42 6 2 {"EnableTimetracker":true,"AllowOnlyContributorsToTrackTime":true,"EnableDependencies":true} 1743823092 0
43 6 3 {"IgnoreWhitespaceConflicts":false,"AllowMerge":true,"AllowRebase":true,"AllowRebaseMerge":true,"AllowSquash":true,"AllowFastForwardOnly":true,"AllowManualMerge":false,"AutodetectManualMerge":false,"AllowRebaseUpdate":true,"DefaultDeleteBranchAfterMerge":false,"DefaultMergeStyle":"merge","DefaultAllowMaintainerEdit":false} 1743823092 0
44 6 4 \N 1743823092 0
45 6 5 \N 1743823092 0
46 6 8 {"ProjectsMode":"all"} 1743823092 0
47 6 9 \N 1743823092 0
48 6 10 \N 1743823092 0
\.
--
-- Data for Name: repository; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.repository (id, owner_id, owner_name, lower_name, name, description, website, original_service_type, original_url, default_branch, num_watches, num_stars, num_forks, num_issues, num_closed_issues, num_pulls, num_closed_pulls, num_milestones, num_closed_milestones, num_projects, num_closed_projects, num_action_runs, num_closed_action_runs, is_private, is_empty, is_archived, is_mirror, status, is_fork, fork_id, is_template, template_id, size, git_size, lfs_size, is_fsck_enabled, close_issues_via_commit_in_any_branch, topics, trust_model, avatar, created_unix, updated_unix, archived_unix, object_format_name, default_wiki_branch) FROM stdin;
5 4 b3 b3share b3share 0 prod 3 0 0 0 0 0 0 0 0 0 0 0 0 f f f f 0 f 0 f 0 24398 24398 0 t f null 0 1741494652 1743228503 0 sha1 main
3 4 b3 bounce bounce lab2 0 master 3 0 0 0 0 1 1 0 0 0 0 0 0 f f f f 0 f 0 f 0 3450982 3450982 0 t f null 0 1740870465 1743228433 0 sha1 main
4 4 b3 gitea-docker gitea-docker 0 main 3 0 0 0 0 0 0 0 0 0 0 0 0 f f f f 0 f 0 f 0 38154695 38154695 0 t f null 0 1740926103 1745113923 0 sha1 main
2 1 bee8333 b3stack b3stack 0 home 1 0 0 0 0 0 0 0 0 0 0 0 0 t f f f 0 f 0 f 0 27152322 27152322 0 t f null 0 1740340557 1745114246 0 sha1 main
6 4 b3 2ticketss 2ticketss ƒÄ½ ΓíÅ ƒÉÖ 0 prod 3 0 0 0 0 0 0 0 0 0 0 0 0 f f f f 0 f 0 f 0 147170 147170 0 t f null 0 1743823092 1743827960 0 sha1 main
1 1 bee8333 beebrain beebrain 0 home 1 0 0 0 0 0 0 0 0 0 0 1 1 t f f f 0 f 0 f 0 488966067 488966067 0 t f null 0 1740324992 1747583242 0 sha1 main
\.
--
-- Data for Name: review; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.review (id, type, reviewer_id, reviewer_team_id, original_author, original_author_id, issue_id, content, official, commit_id, stale, dismissed, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: review_state; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.review_state (id, user_id, pull_id, commit_sha, updated_files, updated_unix) FROM stdin;
\.
--
-- Data for Name: secret; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.secret (id, owner_id, repo_id, name, data, created_unix) FROM stdin;
1 0 1 PUBLIC_REPO_TOKEN fe2581fc3dcbc33871533dcce93fea62b9ad86587875f843ad9273b4c6b9efdd217aeccad24b3346a89017676238e6cb8227c46380ea21befa411bf544f1c450cfa5dad1def7516a 1741494621
2 0 5 PUBLIC_REPO_TOKEN cc2fa3276371903a9e2716b2031f9f4cfea32d570fa5c9e06fb3506c168e8bbd5685d77899189ca980d63c43d61dd3166ae9e1ba420146eeec7226072cc29b2722ed3c43035e789d 1741495294
\.
--
-- Data for Name: session; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.session (key, data, expiry) FROM stdin;
\.
--
-- Data for Name: star; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.star (id, uid, repo_id, created_unix) FROM stdin;
\.
--
-- Data for Name: stopwatch; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.stopwatch (id, issue_id, user_id, created_unix) FROM stdin;
\.
--
-- Data for Name: system_setting; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.system_setting (id, setting_key, setting_value, version, created, updated) FROM stdin;
1 revision 2 1740324616 1740324616
2 picture.disable_gravatar true 1 1740324616 1740324616
3 picture.enable_federated_avatar false 1 1740324616 1740324616
\.
--
-- Data for Name: task; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.task (id, doer_id, owner_id, repo_id, type, status, start_time, end_time, payload_content, message, created) FROM stdin;
\.
--
-- Data for Name: team; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.team (id, org_id, lower_name, name, description, authorize, num_repos, num_members, includes_all_repositories, can_create_org_repo) FROM stdin;
1 4 owners Owners 4 4 3 t t
\.
--
-- Data for Name: team_invite; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.team_invite (id, token, inviter_id, org_id, team_id, email, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: team_repo; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.team_repo (id, org_id, team_id, repo_id) FROM stdin;
1 4 1 3
2 4 1 5
3 4 1 4
4 4 1 6
\.
--
-- Data for Name: team_unit; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.team_unit (id, org_id, team_id, type, access_mode) FROM stdin;
1 4 1 1 4
2 4 1 2 4
3 4 1 3 4
4 4 1 4 4
5 4 1 5 4
6 4 1 6 1
7 4 1 7 1
8 4 1 8 4
9 4 1 9 4
10 4 1 10 4
\.
--
-- Data for Name: team_user; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.team_user (id, org_id, team_id, uid) FROM stdin;
1 4 1 1
2 4 1 3
3 4 1 2
\.
--
-- Data for Name: topic; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.topic (id, name, repo_count, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: tracked_time; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.tracked_time (id, issue_id, user_id, created_unix, "time", deleted) FROM stdin;
\.
--
-- Data for Name: two_factor; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.two_factor (id, uid, secret, scratch_salt, scratch_hash, last_used_passcode, created_unix, updated_unix) FROM stdin;
1 1 OEPqr+r514UAwJHJNh0Z372f4jqdgK/ItZLW5gPsNJwh6jF1N97X4hC+jGzsADaYoQFvqdz1MiRsW305vRDshn1WaggWuxvbLlMDIU31CxnBFKktdd4lqVYw8g/ZvwejELrqxnCrll4= NChwuXsJN2 8499f746b6e515c05e99e5d0ea0fa41399bc44af4fbde9310269b208331c9226fe318dd5fe5e10df1eae131077118e23adcc 618444 1743229558 1747636949
\.
--
-- Data for Name: upload; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.upload (id, uuid, name) FROM stdin;
\.
--
-- Data for Name: user; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public."user" (id, lower_name, name, full_name, email, keep_email_private, email_notifications_preference, passwd, passwd_hash_algo, must_change_password, login_type, login_source, login_name, type, location, website, rands, salt, language, description, created_unix, updated_unix, last_login_unix, last_repo_visibility, max_repo_creation, is_active, is_admin, is_restricted, allow_git_hook, allow_import_local, allow_create_organization, prohibit_login, avatar, avatar_email, use_custom_avatar, num_followers, num_following, num_stars, num_repos, num_teams, num_members, visibility, repo_admin_change_team_access, diff_view_style, theme, keep_activity_private) FROM stdin;
2 rachelwhite10 rachelwhite10 rachelawhite53@gmail.com f enabled 6abb59736cfd937a39b376c02c419b695641cc3513ad990b4adf8804d0a216becd0170b6256524a9d9fb1b0d041560fc64e8 pbkdf2$50000$50 f 0 0 0 4e874033d044d7a56a7e50e08e70ef2a 61541f310d26adb0bfd8091154970708 en-US 1740941179 1740941180 1740941179 f -1 t f f f f t f fdf8f7656e18011a2faa2fb2b36621e0 rachelawhite53@gmail.com f 0 1 0 0 0 0 0 f gitea-auto f
3 841 841 bdavidgiants10@gmail.com f enabled 4a4f37ae486ed1d76248e3bda34f84a1ea49ea4b3a44aa48fa2fe224163e31288102fbb234ea584d355d40ec8227a55e66ac pbkdf2$50000$50 f 0 0 0 c390a21d6b74fbbfd4e4d5806d50afb6 8ca774917cb8901927afd79f1ed92f83 en-US 1743228047 1743230784 1743228047 f -1 t f f f f t f 8a0dc3ea9fcbd0ca3306665c244de336adfcc18196df6cd6148791dac08558da bdavidgiants10@gmail.com t 0 1 0 0 0 0 0 f gitea-auto f
4 b3 b3 f f 0 0 1 cffd822f1145beaaf2c681a2f5559235 d72c91fac19ee24787089c04f5cd542f 1743228172 1743231075 0 f -1 t f f f f f f ced13f9eae68d2044d28d035cd0e1ec87562f13bf3d9c0976e3dfb33f5c05f90 t 1 0 0 4 1 3 0 t f
1 bee8333 bee8333 bennett.l.david@gmail.com f enabled 6b9dd9a59a23fc3a873166c7c8dc88a056b0b3d0ff73546d5ccec9fbd2e3ae14af314cd8db78eddb834a970e4dbc27b1d9c1 pbkdf2$50000$50 f 0 0 0 da3c2ea0d36b63caa793fc56ec80bd76 351cfd5ea0557ece5fd90634f9337cc8 en-US 1740324633 1747636949 1747636949 f -1 t t f f f t f c452b4669c061d2df28a804222299cc937be0c78c62a156d16b33951d3b666a0 bennett.l.david@gmail.com t 1 0 0 2 0 0 0 f unified gitea-auto f
\.
--
-- Data for Name: user_badge; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.user_badge (id, badge_id, user_id) FROM stdin;
\.
--
-- Data for Name: user_blocking; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.user_blocking (id, blocker_id, blockee_id, note, created_unix) FROM stdin;
\.
--
-- Data for Name: user_open_id; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.user_open_id (id, uid, uri, show) FROM stdin;
\.
--
-- Data for Name: user_redirect; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.user_redirect (id, lower_name, redirect_user_id) FROM stdin;
\.
--
-- Data for Name: user_setting; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.user_setting (id, user_id, setting_key, setting_value) FROM stdin;
\.
--
-- Data for Name: version; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.version (id, version) FROM stdin;
1 312
\.
--
-- Data for Name: watch; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.watch (id, user_id, repo_id, mode, created_unix, updated_unix) FROM stdin;
1 1 1 1 1740324992 1740324992
2 1 2 1 1740340557 1740340557
3 1 3 1 1740870465 1740870465
4 1 4 1 1740926103 1740926103
5 1 5 1 1741494652 1741494652
6 3 5 1 1743228487 1743228487
7 3 3 1 1743230406 1743230406
8 3 4 1 1743230406 1743230406
9 2 5 1 1743230410 1743230410
10 2 3 1 1743230410 1743230410
11 2 4 1 1743230410 1743230410
12 1 6 1 1743823092 1743823092
13 3 6 1 1743827960 1743827960
14 2 6 1 1743827960 1743827960
\.
--
-- Data for Name: webauthn_credential; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.webauthn_credential (id, name, lower_name, user_id, credential_id, public_key, attestation_type, aaguid, sign_count, clone_warning, created_unix, updated_unix) FROM stdin;
\.
--
-- Data for Name: webhook; Type: TABLE DATA; Schema: public; Owner: gitea
--
COPY public.webhook (id, repo_id, owner_id, is_system_webhook, url, http_method, content_type, secret, events, is_active, type, meta, last_status, header_authorization_encrypted, created_unix, updated_unix) FROM stdin;
\.
--
-- Name: access_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.access_id_seq', 13, true);
--
-- Name: access_token_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.access_token_id_seq', 5, true);
--
-- Name: action_artifact_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_artifact_id_seq', 1, false);
--
-- Name: action_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_id_seq', 198, true);
--
-- Name: action_run_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_run_id_seq', 1, true);
--
-- Name: action_run_job_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_run_job_id_seq', 1, true);
--
-- Name: action_runner_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_runner_id_seq', 1, false);
--
-- Name: action_runner_token_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_runner_token_id_seq', 2, true);
--
-- Name: action_schedule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_schedule_id_seq', 1, false);
--
-- Name: action_schedule_spec_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_schedule_spec_id_seq', 1, false);
--
-- Name: action_task_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_task_id_seq', 1, false);
--
-- Name: action_task_output_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_task_output_id_seq', 1, false);
--
-- Name: action_task_step_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_task_step_id_seq', 1, false);
--
-- Name: action_tasks_version_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_tasks_version_id_seq', 3, true);
--
-- Name: action_variable_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.action_variable_id_seq', 1, false);
--
-- Name: attachment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.attachment_id_seq', 1, false);
--
-- Name: badge_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.badge_id_seq', 1, false);
--
-- Name: branch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.branch_id_seq', 12, true);
--
-- Name: collaboration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.collaboration_id_seq', 1, true);
--
-- Name: comment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.comment_id_seq', 3, true);
--
-- Name: commit_status_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.commit_status_id_seq', 2, true);
--
-- Name: commit_status_index_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.commit_status_index_id_seq', 2, true);
--
-- Name: commit_status_summary_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.commit_status_summary_id_seq', 1, true);
--
-- Name: dbfs_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.dbfs_data_id_seq', 1, false);
--
-- Name: dbfs_meta_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.dbfs_meta_id_seq', 1, false);
--
-- Name: deploy_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.deploy_key_id_seq', 1, false);
--
-- Name: email_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.email_address_id_seq', 3, true);
--
-- Name: follow_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.follow_id_seq', 2, true);
--
-- Name: gpg_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.gpg_key_id_seq', 1, false);
--
-- Name: hook_task_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.hook_task_id_seq', 1, false);
--
-- Name: issue_assignees_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.issue_assignees_id_seq', 1, false);
--
-- Name: issue_content_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.issue_content_history_id_seq', 2, true);
--
-- Name: issue_dependency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.issue_dependency_id_seq', 1, false);
--
-- Name: issue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.issue_id_seq', 1, true);
--
-- Name: issue_label_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.issue_label_id_seq', 1, false);
--
-- Name: issue_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.issue_user_id_seq', 1, true);
--
-- Name: issue_watch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.issue_watch_id_seq', 1, false);
--
-- Name: label_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.label_id_seq', 1, false);
--
-- Name: language_stat_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.language_stat_id_seq', 16, true);
--
-- Name: lfs_lock_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.lfs_lock_id_seq', 1, false);
--
-- Name: lfs_meta_object_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.lfs_meta_object_id_seq', 1, false);
--
-- Name: login_source_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.login_source_id_seq', 1, false);
--
-- Name: milestone_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.milestone_id_seq', 1, false);
--
-- Name: mirror_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.mirror_id_seq', 1, false);
--
-- Name: notice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.notice_id_seq', 1, false);
--
-- Name: notification_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.notification_id_seq', 3, true);
--
-- Name: oauth2_application_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.oauth2_application_id_seq', 34, true);
--
-- Name: oauth2_authorization_code_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.oauth2_authorization_code_id_seq', 4, true);
--
-- Name: oauth2_grant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.oauth2_grant_id_seq', 1, true);
--
-- Name: org_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.org_user_id_seq', 3, true);
--
-- Name: package_blob_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.package_blob_id_seq', 1, false);
--
-- Name: package_cleanup_rule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.package_cleanup_rule_id_seq', 1, false);
--
-- Name: package_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.package_file_id_seq', 1, false);
--
-- Name: package_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.package_id_seq', 1, false);
--
-- Name: package_property_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.package_property_id_seq', 1, false);
--
-- Name: package_version_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.package_version_id_seq', 1, false);
--
-- Name: project_board_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.project_board_id_seq', 1, false);
--
-- Name: project_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.project_id_seq', 1, false);
--
-- Name: project_issue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.project_issue_id_seq', 1, false);
--
-- Name: protected_branch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.protected_branch_id_seq', 1, false);
--
-- Name: protected_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.protected_tag_id_seq', 1, false);
--
-- Name: public_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.public_key_id_seq', 5, true);
--
-- Name: pull_auto_merge_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.pull_auto_merge_id_seq', 1, false);
--
-- Name: pull_request_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.pull_request_id_seq', 1, true);
--
-- Name: push_mirror_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.push_mirror_id_seq', 1, false);
--
-- Name: reaction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.reaction_id_seq', 1, false);
--
-- Name: release_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.release_id_seq', 1, false);
--
-- Name: renamed_branch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.renamed_branch_id_seq', 1, false);
--
-- Name: repo_archiver_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.repo_archiver_id_seq', 52, true);
--
-- Name: repo_indexer_status_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.repo_indexer_status_id_seq', 8, true);
--
-- Name: repo_license_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.repo_license_id_seq', 4, true);
--
-- Name: repo_redirect_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.repo_redirect_id_seq', 6, true);
--
-- Name: repo_transfer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.repo_transfer_id_seq', 2, true);
--
-- Name: repo_unit_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.repo_unit_id_seq', 48, true);
--
-- Name: repository_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.repository_id_seq', 6, true);
--
-- Name: review_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.review_id_seq', 1, false);
--
-- Name: review_state_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.review_state_id_seq', 1, false);
--
-- Name: secret_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.secret_id_seq', 2, true);
--
-- Name: star_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.star_id_seq', 1, false);
--
-- Name: stopwatch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.stopwatch_id_seq', 1, false);
--
-- Name: system_setting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.system_setting_id_seq', 3, true);
--
-- Name: task_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.task_id_seq', 1, false);
--
-- Name: team_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.team_id_seq', 1, true);
--
-- Name: team_invite_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.team_invite_id_seq', 1, false);
--
-- Name: team_repo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.team_repo_id_seq', 4, true);
--
-- Name: team_unit_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.team_unit_id_seq', 10, true);
--
-- Name: team_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.team_user_id_seq', 3, true);
--
-- Name: topic_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.topic_id_seq', 1, false);
--
-- Name: tracked_time_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.tracked_time_id_seq', 1, false);
--
-- Name: two_factor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.two_factor_id_seq', 1, true);
--
-- Name: upload_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.upload_id_seq', 1, false);
--
-- Name: user_badge_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.user_badge_id_seq', 1, false);
--
-- Name: user_blocking_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.user_blocking_id_seq', 1, false);
--
-- Name: user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.user_id_seq', 4, true);
--
-- Name: user_open_id_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.user_open_id_id_seq', 1, false);
--
-- Name: user_redirect_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.user_redirect_id_seq', 1, false);
--
-- Name: user_setting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.user_setting_id_seq', 1, false);
--
-- Name: version_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.version_id_seq', 33, true);
--
-- Name: watch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.watch_id_seq', 14, true);
--
-- Name: webauthn_credential_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.webauthn_credential_id_seq', 1, false);
--
-- Name: webhook_id_seq; Type: SEQUENCE SET; Schema: public; Owner: gitea
--
SELECT pg_catalog.setval('public.webhook_id_seq', 1, false);
--
-- Name: access access_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.access
ADD CONSTRAINT access_pkey PRIMARY KEY (id);
--
-- Name: access_token access_token_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.access_token
ADD CONSTRAINT access_token_pkey PRIMARY KEY (id);
--
-- Name: action_artifact action_artifact_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_artifact
ADD CONSTRAINT action_artifact_pkey PRIMARY KEY (id);
--
-- Name: action action_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action
ADD CONSTRAINT action_pkey PRIMARY KEY (id);
--
-- Name: action_run_index action_run_index_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_run_index
ADD CONSTRAINT action_run_index_pkey PRIMARY KEY (group_id);
--
-- Name: action_run_job action_run_job_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_run_job
ADD CONSTRAINT action_run_job_pkey PRIMARY KEY (id);
--
-- Name: action_run action_run_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_run
ADD CONSTRAINT action_run_pkey PRIMARY KEY (id);
--
-- Name: action_runner action_runner_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_runner
ADD CONSTRAINT action_runner_pkey PRIMARY KEY (id);
--
-- Name: action_runner_token action_runner_token_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_runner_token
ADD CONSTRAINT action_runner_token_pkey PRIMARY KEY (id);
--
-- Name: action_schedule action_schedule_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_schedule
ADD CONSTRAINT action_schedule_pkey PRIMARY KEY (id);
--
-- Name: action_schedule_spec action_schedule_spec_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_schedule_spec
ADD CONSTRAINT action_schedule_spec_pkey PRIMARY KEY (id);
--
-- Name: action_task_output action_task_output_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_task_output
ADD CONSTRAINT action_task_output_pkey PRIMARY KEY (id);
--
-- Name: action_task action_task_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_task
ADD CONSTRAINT action_task_pkey PRIMARY KEY (id);
--
-- Name: action_task_step action_task_step_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_task_step
ADD CONSTRAINT action_task_step_pkey PRIMARY KEY (id);
--
-- Name: action_tasks_version action_tasks_version_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_tasks_version
ADD CONSTRAINT action_tasks_version_pkey PRIMARY KEY (id);
--
-- Name: action_variable action_variable_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.action_variable
ADD CONSTRAINT action_variable_pkey PRIMARY KEY (id);
--
-- Name: app_state app_state_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.app_state
ADD CONSTRAINT app_state_pkey PRIMARY KEY (id);
--
-- Name: attachment attachment_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.attachment
ADD CONSTRAINT attachment_pkey PRIMARY KEY (id);
--
-- Name: auth_token auth_token_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.auth_token
ADD CONSTRAINT auth_token_pkey PRIMARY KEY (id);
--
-- Name: badge badge_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.badge
ADD CONSTRAINT badge_pkey PRIMARY KEY (id);
--
-- Name: branch branch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.branch
ADD CONSTRAINT branch_pkey PRIMARY KEY (id);
--
-- Name: collaboration collaboration_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.collaboration
ADD CONSTRAINT collaboration_pkey PRIMARY KEY (id);
--
-- Name: comment comment_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.comment
ADD CONSTRAINT comment_pkey PRIMARY KEY (id);
--
-- Name: commit_status_index commit_status_index_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.commit_status_index
ADD CONSTRAINT commit_status_index_pkey PRIMARY KEY (id);
--
-- Name: commit_status commit_status_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.commit_status
ADD CONSTRAINT commit_status_pkey PRIMARY KEY (id);
--
-- Name: commit_status_summary commit_status_summary_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.commit_status_summary
ADD CONSTRAINT commit_status_summary_pkey PRIMARY KEY (id);
--
-- Name: dbfs_data dbfs_data_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.dbfs_data
ADD CONSTRAINT dbfs_data_pkey PRIMARY KEY (id);
--
-- Name: dbfs_meta dbfs_meta_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.dbfs_meta
ADD CONSTRAINT dbfs_meta_pkey PRIMARY KEY (id);
--
-- Name: deploy_key deploy_key_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.deploy_key
ADD CONSTRAINT deploy_key_pkey PRIMARY KEY (id);
--
-- Name: email_address email_address_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.email_address
ADD CONSTRAINT email_address_pkey PRIMARY KEY (id);
--
-- Name: email_hash email_hash_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.email_hash
ADD CONSTRAINT email_hash_pkey PRIMARY KEY (hash);
--
-- Name: external_login_user external_login_user_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.external_login_user
ADD CONSTRAINT external_login_user_pkey PRIMARY KEY (external_id, login_source_id);
--
-- Name: follow follow_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.follow
ADD CONSTRAINT follow_pkey PRIMARY KEY (id);
--
-- Name: gpg_key_import gpg_key_import_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.gpg_key_import
ADD CONSTRAINT gpg_key_import_pkey PRIMARY KEY (key_id);
--
-- Name: gpg_key gpg_key_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.gpg_key
ADD CONSTRAINT gpg_key_pkey PRIMARY KEY (id);
--
-- Name: hook_task hook_task_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.hook_task
ADD CONSTRAINT hook_task_pkey PRIMARY KEY (id);
--
-- Name: issue_assignees issue_assignees_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_assignees
ADD CONSTRAINT issue_assignees_pkey PRIMARY KEY (id);
--
-- Name: issue_content_history issue_content_history_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_content_history
ADD CONSTRAINT issue_content_history_pkey PRIMARY KEY (id);
--
-- Name: issue_dependency issue_dependency_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_dependency
ADD CONSTRAINT issue_dependency_pkey PRIMARY KEY (id);
--
-- Name: issue_index issue_index_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_index
ADD CONSTRAINT issue_index_pkey PRIMARY KEY (group_id);
--
-- Name: issue_label issue_label_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_label
ADD CONSTRAINT issue_label_pkey PRIMARY KEY (id);
--
-- Name: issue issue_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue
ADD CONSTRAINT issue_pkey PRIMARY KEY (id);
--
-- Name: issue_user issue_user_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_user
ADD CONSTRAINT issue_user_pkey PRIMARY KEY (id);
--
-- Name: issue_watch issue_watch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.issue_watch
ADD CONSTRAINT issue_watch_pkey PRIMARY KEY (id);
--
-- Name: label label_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.label
ADD CONSTRAINT label_pkey PRIMARY KEY (id);
--
-- Name: language_stat language_stat_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.language_stat
ADD CONSTRAINT language_stat_pkey PRIMARY KEY (id);
--
-- Name: lfs_lock lfs_lock_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.lfs_lock
ADD CONSTRAINT lfs_lock_pkey PRIMARY KEY (id);
--
-- Name: lfs_meta_object lfs_meta_object_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.lfs_meta_object
ADD CONSTRAINT lfs_meta_object_pkey PRIMARY KEY (id);
--
-- Name: login_source login_source_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.login_source
ADD CONSTRAINT login_source_pkey PRIMARY KEY (id);
--
-- Name: milestone milestone_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.milestone
ADD CONSTRAINT milestone_pkey PRIMARY KEY (id);
--
-- Name: mirror mirror_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.mirror
ADD CONSTRAINT mirror_pkey PRIMARY KEY (id);
--
-- Name: notice notice_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.notice
ADD CONSTRAINT notice_pkey PRIMARY KEY (id);
--
-- Name: notification notification_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.notification
ADD CONSTRAINT notification_pkey PRIMARY KEY (id);
--
-- Name: oauth2_application oauth2_application_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.oauth2_application
ADD CONSTRAINT oauth2_application_pkey PRIMARY KEY (id);
--
-- Name: oauth2_authorization_code oauth2_authorization_code_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.oauth2_authorization_code
ADD CONSTRAINT oauth2_authorization_code_pkey PRIMARY KEY (id);
--
-- Name: oauth2_grant oauth2_grant_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.oauth2_grant
ADD CONSTRAINT oauth2_grant_pkey PRIMARY KEY (id);
--
-- Name: org_user org_user_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.org_user
ADD CONSTRAINT org_user_pkey PRIMARY KEY (id);
--
-- Name: package_blob package_blob_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_blob
ADD CONSTRAINT package_blob_pkey PRIMARY KEY (id);
--
-- Name: package_blob_upload package_blob_upload_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_blob_upload
ADD CONSTRAINT package_blob_upload_pkey PRIMARY KEY (id);
--
-- Name: package_cleanup_rule package_cleanup_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_cleanup_rule
ADD CONSTRAINT package_cleanup_rule_pkey PRIMARY KEY (id);
--
-- Name: package_file package_file_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_file
ADD CONSTRAINT package_file_pkey PRIMARY KEY (id);
--
-- Name: package package_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package
ADD CONSTRAINT package_pkey PRIMARY KEY (id);
--
-- Name: package_property package_property_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_property
ADD CONSTRAINT package_property_pkey PRIMARY KEY (id);
--
-- Name: package_version package_version_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.package_version
ADD CONSTRAINT package_version_pkey PRIMARY KEY (id);
--
-- Name: project_board project_board_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.project_board
ADD CONSTRAINT project_board_pkey PRIMARY KEY (id);
--
-- Name: project_issue project_issue_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.project_issue
ADD CONSTRAINT project_issue_pkey PRIMARY KEY (id);
--
-- Name: project project_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.project
ADD CONSTRAINT project_pkey PRIMARY KEY (id);
--
-- Name: protected_branch protected_branch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.protected_branch
ADD CONSTRAINT protected_branch_pkey PRIMARY KEY (id);
--
-- Name: protected_tag protected_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.protected_tag
ADD CONSTRAINT protected_tag_pkey PRIMARY KEY (id);
--
-- Name: public_key public_key_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.public_key
ADD CONSTRAINT public_key_pkey PRIMARY KEY (id);
--
-- Name: pull_auto_merge pull_auto_merge_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.pull_auto_merge
ADD CONSTRAINT pull_auto_merge_pkey PRIMARY KEY (id);
--
-- Name: pull_request pull_request_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.pull_request
ADD CONSTRAINT pull_request_pkey PRIMARY KEY (id);
--
-- Name: push_mirror push_mirror_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.push_mirror
ADD CONSTRAINT push_mirror_pkey PRIMARY KEY (id);
--
-- Name: reaction reaction_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.reaction
ADD CONSTRAINT reaction_pkey PRIMARY KEY (id);
--
-- Name: release release_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.release
ADD CONSTRAINT release_pkey PRIMARY KEY (id);
--
-- Name: renamed_branch renamed_branch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.renamed_branch
ADD CONSTRAINT renamed_branch_pkey PRIMARY KEY (id);
--
-- Name: repo_archiver repo_archiver_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_archiver
ADD CONSTRAINT repo_archiver_pkey PRIMARY KEY (id);
--
-- Name: repo_indexer_status repo_indexer_status_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_indexer_status
ADD CONSTRAINT repo_indexer_status_pkey PRIMARY KEY (id);
--
-- Name: repo_license repo_license_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_license
ADD CONSTRAINT repo_license_pkey PRIMARY KEY (id);
--
-- Name: repo_redirect repo_redirect_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_redirect
ADD CONSTRAINT repo_redirect_pkey PRIMARY KEY (id);
--
-- Name: repo_topic repo_topic_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_topic
ADD CONSTRAINT repo_topic_pkey PRIMARY KEY (repo_id, topic_id);
--
-- Name: repo_transfer repo_transfer_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_transfer
ADD CONSTRAINT repo_transfer_pkey PRIMARY KEY (id);
--
-- Name: repo_unit repo_unit_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repo_unit
ADD CONSTRAINT repo_unit_pkey PRIMARY KEY (id);
--
-- Name: repository repository_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.repository
ADD CONSTRAINT repository_pkey PRIMARY KEY (id);
--
-- Name: review review_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.review
ADD CONSTRAINT review_pkey PRIMARY KEY (id);
--
-- Name: review_state review_state_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.review_state
ADD CONSTRAINT review_state_pkey PRIMARY KEY (id);
--
-- Name: secret secret_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.secret
ADD CONSTRAINT secret_pkey PRIMARY KEY (id);
--
-- Name: session session_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.session
ADD CONSTRAINT session_pkey PRIMARY KEY (key);
--
-- Name: star star_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.star
ADD CONSTRAINT star_pkey PRIMARY KEY (id);
--
-- Name: stopwatch stopwatch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.stopwatch
ADD CONSTRAINT stopwatch_pkey PRIMARY KEY (id);
--
-- Name: system_setting system_setting_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.system_setting
ADD CONSTRAINT system_setting_pkey PRIMARY KEY (id);
--
-- Name: task task_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.task
ADD CONSTRAINT task_pkey PRIMARY KEY (id);
--
-- Name: team_invite team_invite_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.team_invite
ADD CONSTRAINT team_invite_pkey PRIMARY KEY (id);
--
-- Name: team team_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.team
ADD CONSTRAINT team_pkey PRIMARY KEY (id);
--
-- Name: team_repo team_repo_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.team_repo
ADD CONSTRAINT team_repo_pkey PRIMARY KEY (id);
--
-- Name: team_unit team_unit_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.team_unit
ADD CONSTRAINT team_unit_pkey PRIMARY KEY (id);
--
-- Name: team_user team_user_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.team_user
ADD CONSTRAINT team_user_pkey PRIMARY KEY (id);
--
-- Name: topic topic_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.topic
ADD CONSTRAINT topic_pkey PRIMARY KEY (id);
--
-- Name: tracked_time tracked_time_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.tracked_time
ADD CONSTRAINT tracked_time_pkey PRIMARY KEY (id);
--
-- Name: two_factor two_factor_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.two_factor
ADD CONSTRAINT two_factor_pkey PRIMARY KEY (id);
--
-- Name: upload upload_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.upload
ADD CONSTRAINT upload_pkey PRIMARY KEY (id);
--
-- Name: user_badge user_badge_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.user_badge
ADD CONSTRAINT user_badge_pkey PRIMARY KEY (id);
--
-- Name: user_blocking user_blocking_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.user_blocking
ADD CONSTRAINT user_blocking_pkey PRIMARY KEY (id);
--
-- Name: user_open_id user_open_id_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.user_open_id
ADD CONSTRAINT user_open_id_pkey PRIMARY KEY (id);
--
-- Name: user user_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public."user"
ADD CONSTRAINT user_pkey PRIMARY KEY (id);
--
-- Name: user_redirect user_redirect_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.user_redirect
ADD CONSTRAINT user_redirect_pkey PRIMARY KEY (id);
--
-- Name: user_setting user_setting_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.user_setting
ADD CONSTRAINT user_setting_pkey PRIMARY KEY (id);
--
-- Name: version version_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.version
ADD CONSTRAINT version_pkey PRIMARY KEY (id);
--
-- Name: watch watch_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.watch
ADD CONSTRAINT watch_pkey PRIMARY KEY (id);
--
-- Name: webauthn_credential webauthn_credential_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.webauthn_credential
ADD CONSTRAINT webauthn_credential_pkey PRIMARY KEY (id);
--
-- Name: webhook webhook_pkey; Type: CONSTRAINT; Schema: public; Owner: gitea
--
ALTER TABLE ONLY public.webhook
ADD CONSTRAINT webhook_pkey PRIMARY KEY (id);
--
-- Name: IDX_access_token_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_access_token_created_unix" ON public.access_token USING btree (created_unix);
--
-- Name: IDX_access_token_token_last_eight; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_access_token_token_last_eight" ON public.access_token USING btree (token_last_eight);
--
-- Name: IDX_access_token_uid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_access_token_uid" ON public.access_token USING btree (uid);
--
-- Name: IDX_access_token_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_access_token_updated_unix" ON public.access_token USING btree (updated_unix);
--
-- Name: IDX_action_artifact_artifact_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_artifact_artifact_name" ON public.action_artifact USING btree (artifact_name);
--
-- Name: IDX_action_artifact_artifact_path; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_artifact_artifact_path" ON public.action_artifact USING btree (artifact_path);
--
-- Name: IDX_action_artifact_expired_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_artifact_expired_unix" ON public.action_artifact USING btree (expired_unix);
--
-- Name: IDX_action_artifact_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_artifact_repo_id" ON public.action_artifact USING btree (repo_id);
--
-- Name: IDX_action_artifact_run_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_artifact_run_id" ON public.action_artifact USING btree (run_id);
--
-- Name: IDX_action_artifact_status; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_artifact_status" ON public.action_artifact USING btree (status);
--
-- Name: IDX_action_artifact_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_artifact_updated_unix" ON public.action_artifact USING btree (updated_unix);
--
-- Name: IDX_action_au_r_c_u_d; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_au_r_c_u_d" ON public.action USING btree (act_user_id, repo_id, created_unix, user_id, is_deleted);
--
-- Name: IDX_action_c_u; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_c_u" ON public.action USING btree (user_id, is_deleted);
--
-- Name: IDX_action_c_u_d; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_c_u_d" ON public.action USING btree (created_unix, user_id, is_deleted);
--
-- Name: IDX_action_comment_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_comment_id" ON public.action USING btree (comment_id);
--
-- Name: IDX_action_r_u_d; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_r_u_d" ON public.action USING btree (repo_id, user_id, is_deleted);
--
-- Name: IDX_action_run_approved_by; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_approved_by" ON public.action_run USING btree (approved_by);
--
-- Name: IDX_action_run_index; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_index" ON public.action_run USING btree (index);
--
-- Name: IDX_action_run_index_max_index; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_index_max_index" ON public.action_run_index USING btree (max_index);
--
-- Name: IDX_action_run_job_commit_sha; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_job_commit_sha" ON public.action_run_job USING btree (commit_sha);
--
-- Name: IDX_action_run_job_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_job_owner_id" ON public.action_run_job USING btree (owner_id);
--
-- Name: IDX_action_run_job_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_job_repo_id" ON public.action_run_job USING btree (repo_id);
--
-- Name: IDX_action_run_job_run_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_job_run_id" ON public.action_run_job USING btree (run_id);
--
-- Name: IDX_action_run_job_status; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_job_status" ON public.action_run_job USING btree (status);
--
-- Name: IDX_action_run_job_updated; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_job_updated" ON public.action_run_job USING btree (updated);
--
-- Name: IDX_action_run_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_owner_id" ON public.action_run USING btree (owner_id);
--
-- Name: IDX_action_run_ref; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_ref" ON public.action_run USING btree (ref);
--
-- Name: IDX_action_run_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_repo_id" ON public.action_run USING btree (repo_id);
--
-- Name: IDX_action_run_status; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_status" ON public.action_run USING btree (status);
--
-- Name: IDX_action_run_trigger_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_trigger_user_id" ON public.action_run USING btree (trigger_user_id);
--
-- Name: IDX_action_run_workflow_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_run_workflow_id" ON public.action_run USING btree (workflow_id);
--
-- Name: IDX_action_runner_last_active; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_runner_last_active" ON public.action_runner USING btree (last_active);
--
-- Name: IDX_action_runner_last_online; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_runner_last_online" ON public.action_runner USING btree (last_online);
--
-- Name: IDX_action_runner_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_runner_owner_id" ON public.action_runner USING btree (owner_id);
--
-- Name: IDX_action_runner_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_runner_repo_id" ON public.action_runner USING btree (repo_id);
--
-- Name: IDX_action_runner_token_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_runner_token_owner_id" ON public.action_runner_token USING btree (owner_id);
--
-- Name: IDX_action_runner_token_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_runner_token_repo_id" ON public.action_runner_token USING btree (repo_id);
--
-- Name: IDX_action_schedule_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_schedule_owner_id" ON public.action_schedule USING btree (owner_id);
--
-- Name: IDX_action_schedule_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_schedule_repo_id" ON public.action_schedule USING btree (repo_id);
--
-- Name: IDX_action_schedule_spec_next; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_schedule_spec_next" ON public.action_schedule_spec USING btree (next);
--
-- Name: IDX_action_schedule_spec_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_schedule_spec_repo_id" ON public.action_schedule_spec USING btree (repo_id);
--
-- Name: IDX_action_schedule_spec_schedule_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_schedule_spec_schedule_id" ON public.action_schedule_spec USING btree (schedule_id);
--
-- Name: IDX_action_task_commit_sha; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_commit_sha" ON public.action_task USING btree (commit_sha);
--
-- Name: IDX_action_task_output_task_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_output_task_id" ON public.action_task_output USING btree (task_id);
--
-- Name: IDX_action_task_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_owner_id" ON public.action_task USING btree (owner_id);
--
-- Name: IDX_action_task_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_repo_id" ON public.action_task USING btree (repo_id);
--
-- Name: IDX_action_task_runner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_runner_id" ON public.action_task USING btree (runner_id);
--
-- Name: IDX_action_task_started; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_started" ON public.action_task USING btree (started);
--
-- Name: IDX_action_task_status; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_status" ON public.action_task USING btree (status);
--
-- Name: IDX_action_task_step_index; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_step_index" ON public.action_task_step USING btree (index);
--
-- Name: IDX_action_task_step_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_step_repo_id" ON public.action_task_step USING btree (repo_id);
--
-- Name: IDX_action_task_step_status; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_step_status" ON public.action_task_step USING btree (status);
--
-- Name: IDX_action_task_step_task_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_step_task_id" ON public.action_task_step USING btree (task_id);
--
-- Name: IDX_action_task_stopped_log_expired; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_stopped_log_expired" ON public.action_task USING btree (stopped, log_expired);
--
-- Name: IDX_action_task_token_last_eight; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_token_last_eight" ON public.action_task USING btree (token_last_eight);
--
-- Name: IDX_action_task_updated; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_task_updated" ON public.action_task USING btree (updated);
--
-- Name: IDX_action_tasks_version_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_tasks_version_repo_id" ON public.action_tasks_version USING btree (repo_id);
--
-- Name: IDX_action_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_user_id" ON public.action USING btree (user_id);
--
-- Name: IDX_action_variable_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_action_variable_repo_id" ON public.action_variable USING btree (repo_id);
--
-- Name: IDX_attachment_comment_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_attachment_comment_id" ON public.attachment USING btree (comment_id);
--
-- Name: IDX_attachment_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_attachment_issue_id" ON public.attachment USING btree (issue_id);
--
-- Name: IDX_attachment_release_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_attachment_release_id" ON public.attachment USING btree (release_id);
--
-- Name: IDX_attachment_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_attachment_repo_id" ON public.attachment USING btree (repo_id);
--
-- Name: IDX_attachment_uploader_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_attachment_uploader_id" ON public.attachment USING btree (uploader_id);
--
-- Name: IDX_auth_token_expires_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_auth_token_expires_unix" ON public.auth_token USING btree (expires_unix);
--
-- Name: IDX_auth_token_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_auth_token_user_id" ON public.auth_token USING btree (user_id);
--
-- Name: IDX_branch_deleted_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_branch_deleted_unix" ON public.branch USING btree (deleted_unix);
--
-- Name: IDX_branch_is_deleted; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_branch_is_deleted" ON public.branch USING btree (is_deleted);
--
-- Name: IDX_collaboration_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_collaboration_created_unix" ON public.collaboration USING btree (created_unix);
--
-- Name: IDX_collaboration_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_collaboration_repo_id" ON public.collaboration USING btree (repo_id);
--
-- Name: IDX_collaboration_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_collaboration_updated_unix" ON public.collaboration USING btree (updated_unix);
--
-- Name: IDX_collaboration_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_collaboration_user_id" ON public.collaboration USING btree (user_id);
--
-- Name: IDX_comment_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_comment_created_unix" ON public.comment USING btree (created_unix);
--
-- Name: IDX_comment_dependent_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_comment_dependent_issue_id" ON public.comment USING btree (dependent_issue_id);
--
-- Name: IDX_comment_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_comment_issue_id" ON public.comment USING btree (issue_id);
--
-- Name: IDX_comment_poster_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_comment_poster_id" ON public.comment USING btree (poster_id);
--
-- Name: IDX_comment_ref_comment_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_comment_ref_comment_id" ON public.comment USING btree (ref_comment_id);
--
-- Name: IDX_comment_ref_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_comment_ref_issue_id" ON public.comment USING btree (ref_issue_id);
--
-- Name: IDX_comment_ref_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_comment_ref_repo_id" ON public.comment USING btree (ref_repo_id);
--
-- Name: IDX_comment_review_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_comment_review_id" ON public.comment USING btree (review_id);
--
-- Name: IDX_comment_type; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_comment_type" ON public.comment USING btree (type);
--
-- Name: IDX_comment_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_comment_updated_unix" ON public.comment USING btree (updated_unix);
--
-- Name: IDX_commit_status_context_hash; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_commit_status_context_hash" ON public.commit_status USING btree (context_hash);
--
-- Name: IDX_commit_status_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_commit_status_created_unix" ON public.commit_status USING btree (created_unix);
--
-- Name: IDX_commit_status_index; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_commit_status_index" ON public.commit_status USING btree (index);
--
-- Name: IDX_commit_status_index_max_index; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_commit_status_index_max_index" ON public.commit_status_index USING btree (max_index);
--
-- Name: IDX_commit_status_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_commit_status_repo_id" ON public.commit_status USING btree (repo_id);
--
-- Name: IDX_commit_status_sha; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_commit_status_sha" ON public.commit_status USING btree (sha);
--
-- Name: IDX_commit_status_summary_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_commit_status_summary_repo_id" ON public.commit_status_summary USING btree (repo_id);
--
-- Name: IDX_commit_status_summary_sha; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_commit_status_summary_sha" ON public.commit_status_summary USING btree (sha);
--
-- Name: IDX_commit_status_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_commit_status_updated_unix" ON public.commit_status USING btree (updated_unix);
--
-- Name: IDX_dbfs_data_meta_offset; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_dbfs_data_meta_offset" ON public.dbfs_data USING btree (meta_id, blob_offset);
--
-- Name: IDX_deploy_key_key_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_deploy_key_key_id" ON public.deploy_key USING btree (key_id);
--
-- Name: IDX_deploy_key_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_deploy_key_repo_id" ON public.deploy_key USING btree (repo_id);
--
-- Name: IDX_email_address_uid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_email_address_uid" ON public.email_address USING btree (uid);
--
-- Name: IDX_external_login_user_provider; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_external_login_user_provider" ON public.external_login_user USING btree (provider);
--
-- Name: IDX_external_login_user_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_external_login_user_user_id" ON public.external_login_user USING btree (user_id);
--
-- Name: IDX_follow_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_follow_created_unix" ON public.follow USING btree (created_unix);
--
-- Name: IDX_gpg_key_key_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_gpg_key_key_id" ON public.gpg_key USING btree (key_id);
--
-- Name: IDX_gpg_key_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_gpg_key_owner_id" ON public.gpg_key USING btree (owner_id);
--
-- Name: IDX_hook_task_hook_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_hook_task_hook_id" ON public.hook_task USING btree (hook_id);
--
-- Name: IDX_issue_assignees_assignee_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_assignees_assignee_id" ON public.issue_assignees USING btree (assignee_id);
--
-- Name: IDX_issue_assignees_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_assignees_issue_id" ON public.issue_assignees USING btree (issue_id);
--
-- Name: IDX_issue_closed_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_closed_unix" ON public.issue USING btree (closed_unix);
--
-- Name: IDX_issue_content_history_comment_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_content_history_comment_id" ON public.issue_content_history USING btree (comment_id);
--
-- Name: IDX_issue_content_history_edited_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_content_history_edited_unix" ON public.issue_content_history USING btree (edited_unix);
--
-- Name: IDX_issue_content_history_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_content_history_issue_id" ON public.issue_content_history USING btree (issue_id);
--
-- Name: IDX_issue_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_created_unix" ON public.issue USING btree (created_unix);
--
-- Name: IDX_issue_deadline_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_deadline_unix" ON public.issue USING btree (deadline_unix);
--
-- Name: IDX_issue_index_max_index; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_index_max_index" ON public.issue_index USING btree (max_index);
--
-- Name: IDX_issue_is_closed; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_is_closed" ON public.issue USING btree (is_closed);
--
-- Name: IDX_issue_is_pull; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_is_pull" ON public.issue USING btree (is_pull);
--
-- Name: IDX_issue_milestone_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_milestone_id" ON public.issue USING btree (milestone_id);
--
-- Name: IDX_issue_original_author_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_original_author_id" ON public.issue USING btree (original_author_id);
--
-- Name: IDX_issue_poster_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_poster_id" ON public.issue USING btree (poster_id);
--
-- Name: IDX_issue_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_repo_id" ON public.issue USING btree (repo_id);
--
-- Name: IDX_issue_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_updated_unix" ON public.issue USING btree (updated_unix);
--
-- Name: IDX_issue_user_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_user_issue_id" ON public.issue_user USING btree (issue_id);
--
-- Name: IDX_issue_user_uid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_issue_user_uid" ON public.issue_user USING btree (uid);
--
-- Name: IDX_label_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_label_created_unix" ON public.label USING btree (created_unix);
--
-- Name: IDX_label_org_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_label_org_id" ON public.label USING btree (org_id);
--
-- Name: IDX_label_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_label_repo_id" ON public.label USING btree (repo_id);
--
-- Name: IDX_label_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_label_updated_unix" ON public.label USING btree (updated_unix);
--
-- Name: IDX_language_stat_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_language_stat_created_unix" ON public.language_stat USING btree (created_unix);
--
-- Name: IDX_language_stat_language; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_language_stat_language" ON public.language_stat USING btree (language);
--
-- Name: IDX_language_stat_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_language_stat_repo_id" ON public.language_stat USING btree (repo_id);
--
-- Name: IDX_lfs_lock_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_lfs_lock_owner_id" ON public.lfs_lock USING btree (owner_id);
--
-- Name: IDX_lfs_lock_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_lfs_lock_repo_id" ON public.lfs_lock USING btree (repo_id);
--
-- Name: IDX_lfs_meta_object_oid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_lfs_meta_object_oid" ON public.lfs_meta_object USING btree (oid);
--
-- Name: IDX_lfs_meta_object_repository_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_lfs_meta_object_repository_id" ON public.lfs_meta_object USING btree (repository_id);
--
-- Name: IDX_lfs_meta_object_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_lfs_meta_object_updated_unix" ON public.lfs_meta_object USING btree (updated_unix);
--
-- Name: IDX_login_source_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_login_source_created_unix" ON public.login_source USING btree (created_unix);
--
-- Name: IDX_login_source_is_active; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_login_source_is_active" ON public.login_source USING btree (is_active);
--
-- Name: IDX_login_source_is_sync_enabled; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_login_source_is_sync_enabled" ON public.login_source USING btree (is_sync_enabled);
--
-- Name: IDX_login_source_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_login_source_updated_unix" ON public.login_source USING btree (updated_unix);
--
-- Name: IDX_milestone_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_milestone_created_unix" ON public.milestone USING btree (created_unix);
--
-- Name: IDX_milestone_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_milestone_repo_id" ON public.milestone USING btree (repo_id);
--
-- Name: IDX_milestone_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_milestone_updated_unix" ON public.milestone USING btree (updated_unix);
--
-- Name: IDX_mirror_next_update_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_mirror_next_update_unix" ON public.mirror USING btree (next_update_unix);
--
-- Name: IDX_mirror_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_mirror_repo_id" ON public.mirror USING btree (repo_id);
--
-- Name: IDX_mirror_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_mirror_updated_unix" ON public.mirror USING btree (updated_unix);
--
-- Name: IDX_notice_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_notice_created_unix" ON public.notice USING btree (created_unix);
--
-- Name: IDX_notification_commit_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_notification_commit_id" ON public.notification USING btree (commit_id);
--
-- Name: IDX_notification_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_notification_issue_id" ON public.notification USING btree (issue_id);
--
-- Name: IDX_notification_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_notification_repo_id" ON public.notification USING btree (repo_id);
--
-- Name: IDX_notification_source; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_notification_source" ON public.notification USING btree (source);
--
-- Name: IDX_notification_status; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_notification_status" ON public.notification USING btree (status);
--
-- Name: IDX_notification_u_s_uu; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_notification_u_s_uu" ON public.notification USING btree (user_id, status, updated_unix);
--
-- Name: IDX_notification_updated_by; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_notification_updated_by" ON public.notification USING btree (updated_by);
--
-- Name: IDX_notification_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_notification_user_id" ON public.notification USING btree (user_id);
--
-- Name: IDX_oauth2_application_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_oauth2_application_created_unix" ON public.oauth2_application USING btree (created_unix);
--
-- Name: IDX_oauth2_application_uid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_oauth2_application_uid" ON public.oauth2_application USING btree (uid);
--
-- Name: IDX_oauth2_application_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_oauth2_application_updated_unix" ON public.oauth2_application USING btree (updated_unix);
--
-- Name: IDX_oauth2_authorization_code_valid_until; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_oauth2_authorization_code_valid_until" ON public.oauth2_authorization_code USING btree (valid_until);
--
-- Name: IDX_oauth2_grant_application_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_oauth2_grant_application_id" ON public.oauth2_grant USING btree (application_id);
--
-- Name: IDX_oauth2_grant_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_oauth2_grant_user_id" ON public.oauth2_grant USING btree (user_id);
--
-- Name: IDX_org_user_is_public; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_org_user_is_public" ON public.org_user USING btree (is_public);
--
-- Name: IDX_org_user_org_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_org_user_org_id" ON public.org_user USING btree (org_id);
--
-- Name: IDX_org_user_uid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_org_user_uid" ON public.org_user USING btree (uid);
--
-- Name: IDX_package_blob_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_blob_created_unix" ON public.package_blob USING btree (created_unix);
--
-- Name: IDX_package_blob_hash_md5; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_blob_hash_md5" ON public.package_blob USING btree (hash_md5);
--
-- Name: IDX_package_blob_hash_sha1; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_blob_hash_sha1" ON public.package_blob USING btree (hash_sha1);
--
-- Name: IDX_package_blob_hash_sha256; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_blob_hash_sha256" ON public.package_blob USING btree (hash_sha256);
--
-- Name: IDX_package_blob_hash_sha512; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_blob_hash_sha512" ON public.package_blob USING btree (hash_sha512);
--
-- Name: IDX_package_blob_upload_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_blob_upload_updated_unix" ON public.package_blob_upload USING btree (updated_unix);
--
-- Name: IDX_package_cleanup_rule_enabled; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_cleanup_rule_enabled" ON public.package_cleanup_rule USING btree (enabled);
--
-- Name: IDX_package_cleanup_rule_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_cleanup_rule_owner_id" ON public.package_cleanup_rule USING btree (owner_id);
--
-- Name: IDX_package_cleanup_rule_type; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_cleanup_rule_type" ON public.package_cleanup_rule USING btree (type);
--
-- Name: IDX_package_file_blob_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_file_blob_id" ON public.package_file USING btree (blob_id);
--
-- Name: IDX_package_file_composite_key; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_file_composite_key" ON public.package_file USING btree (composite_key);
--
-- Name: IDX_package_file_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_file_created_unix" ON public.package_file USING btree (created_unix);
--
-- Name: IDX_package_file_lower_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_file_lower_name" ON public.package_file USING btree (lower_name);
--
-- Name: IDX_package_file_version_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_file_version_id" ON public.package_file USING btree (version_id);
--
-- Name: IDX_package_lower_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_lower_name" ON public.package USING btree (lower_name);
--
-- Name: IDX_package_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_owner_id" ON public.package USING btree (owner_id);
--
-- Name: IDX_package_property_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_property_name" ON public.package_property USING btree (name);
--
-- Name: IDX_package_property_ref_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_property_ref_id" ON public.package_property USING btree (ref_id);
--
-- Name: IDX_package_property_ref_type; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_property_ref_type" ON public.package_property USING btree (ref_type);
--
-- Name: IDX_package_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_repo_id" ON public.package USING btree (repo_id);
--
-- Name: IDX_package_type; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_type" ON public.package USING btree (type);
--
-- Name: IDX_package_version_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_version_created_unix" ON public.package_version USING btree (created_unix);
--
-- Name: IDX_package_version_is_internal; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_version_is_internal" ON public.package_version USING btree (is_internal);
--
-- Name: IDX_package_version_lower_version; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_version_lower_version" ON public.package_version USING btree (lower_version);
--
-- Name: IDX_package_version_package_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_package_version_package_id" ON public.package_version USING btree (package_id);
--
-- Name: IDX_project_board_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_board_created_unix" ON public.project_board USING btree (created_unix);
--
-- Name: IDX_project_board_project_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_board_project_id" ON public.project_board USING btree (project_id);
--
-- Name: IDX_project_board_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_board_updated_unix" ON public.project_board USING btree (updated_unix);
--
-- Name: IDX_project_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_created_unix" ON public.project USING btree (created_unix);
--
-- Name: IDX_project_is_closed; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_is_closed" ON public.project USING btree (is_closed);
--
-- Name: IDX_project_issue_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_issue_issue_id" ON public.project_issue USING btree (issue_id);
--
-- Name: IDX_project_issue_project_board_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_issue_project_board_id" ON public.project_issue USING btree (project_board_id);
--
-- Name: IDX_project_issue_project_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_issue_project_id" ON public.project_issue USING btree (project_id);
--
-- Name: IDX_project_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_owner_id" ON public.project USING btree (owner_id);
--
-- Name: IDX_project_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_repo_id" ON public.project USING btree (repo_id);
--
-- Name: IDX_project_title; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_title" ON public.project USING btree (title);
--
-- Name: IDX_project_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_project_updated_unix" ON public.project USING btree (updated_unix);
--
-- Name: IDX_public_key_fingerprint; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_public_key_fingerprint" ON public.public_key USING btree (fingerprint);
--
-- Name: IDX_public_key_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_public_key_owner_id" ON public.public_key USING btree (owner_id);
--
-- Name: IDX_pull_auto_merge_doer_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_pull_auto_merge_doer_id" ON public.pull_auto_merge USING btree (doer_id);
--
-- Name: IDX_pull_request_base_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_pull_request_base_repo_id" ON public.pull_request USING btree (base_repo_id);
--
-- Name: IDX_pull_request_has_merged; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_pull_request_has_merged" ON public.pull_request USING btree (has_merged);
--
-- Name: IDX_pull_request_head_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_pull_request_head_repo_id" ON public.pull_request USING btree (head_repo_id);
--
-- Name: IDX_pull_request_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_pull_request_issue_id" ON public.pull_request USING btree (issue_id);
--
-- Name: IDX_pull_request_merged_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_pull_request_merged_unix" ON public.pull_request USING btree (merged_unix);
--
-- Name: IDX_pull_request_merger_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_pull_request_merger_id" ON public.pull_request USING btree (merger_id);
--
-- Name: IDX_push_mirror_last_update; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_push_mirror_last_update" ON public.push_mirror USING btree (last_update);
--
-- Name: IDX_push_mirror_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_push_mirror_repo_id" ON public.push_mirror USING btree (repo_id);
--
-- Name: IDX_reaction_comment_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_reaction_comment_id" ON public.reaction USING btree (comment_id);
--
-- Name: IDX_reaction_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_reaction_created_unix" ON public.reaction USING btree (created_unix);
--
-- Name: IDX_reaction_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_reaction_issue_id" ON public.reaction USING btree (issue_id);
--
-- Name: IDX_reaction_original_author; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_reaction_original_author" ON public.reaction USING btree (original_author);
--
-- Name: IDX_reaction_original_author_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_reaction_original_author_id" ON public.reaction USING btree (original_author_id);
--
-- Name: IDX_reaction_type; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_reaction_type" ON public.reaction USING btree (type);
--
-- Name: IDX_reaction_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_reaction_user_id" ON public.reaction USING btree (user_id);
--
-- Name: IDX_release_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_release_created_unix" ON public.release USING btree (created_unix);
--
-- Name: IDX_release_original_author_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_release_original_author_id" ON public.release USING btree (original_author_id);
--
-- Name: IDX_release_publisher_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_release_publisher_id" ON public.release USING btree (publisher_id);
--
-- Name: IDX_release_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_release_repo_id" ON public.release USING btree (repo_id);
--
-- Name: IDX_release_sha1; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_release_sha1" ON public.release USING btree (sha1);
--
-- Name: IDX_release_tag_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_release_tag_name" ON public.release USING btree (tag_name);
--
-- Name: IDX_renamed_branch_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_renamed_branch_repo_id" ON public.renamed_branch USING btree (repo_id);
--
-- Name: IDX_repo_archiver_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repo_archiver_created_unix" ON public.repo_archiver USING btree (created_unix);
--
-- Name: IDX_repo_archiver_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repo_archiver_repo_id" ON public.repo_archiver USING btree (repo_id);
--
-- Name: IDX_repo_indexer_status_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repo_indexer_status_s" ON public.repo_indexer_status USING btree (repo_id, indexer_type);
--
-- Name: IDX_repo_license_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repo_license_created_unix" ON public.repo_license USING btree (created_unix);
--
-- Name: IDX_repo_license_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repo_license_updated_unix" ON public.repo_license USING btree (updated_unix);
--
-- Name: IDX_repo_redirect_lower_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repo_redirect_lower_name" ON public.repo_redirect USING btree (lower_name);
--
-- Name: IDX_repo_transfer_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repo_transfer_created_unix" ON public.repo_transfer USING btree (created_unix);
--
-- Name: IDX_repo_transfer_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repo_transfer_updated_unix" ON public.repo_transfer USING btree (updated_unix);
--
-- Name: IDX_repo_unit_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repo_unit_created_unix" ON public.repo_unit USING btree (created_unix);
--
-- Name: IDX_repo_unit_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repo_unit_s" ON public.repo_unit USING btree (repo_id, type);
--
-- Name: IDX_repository_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_created_unix" ON public.repository USING btree (created_unix);
--
-- Name: IDX_repository_fork_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_fork_id" ON public.repository USING btree (fork_id);
--
-- Name: IDX_repository_is_archived; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_is_archived" ON public.repository USING btree (is_archived);
--
-- Name: IDX_repository_is_empty; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_is_empty" ON public.repository USING btree (is_empty);
--
-- Name: IDX_repository_is_fork; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_is_fork" ON public.repository USING btree (is_fork);
--
-- Name: IDX_repository_is_mirror; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_is_mirror" ON public.repository USING btree (is_mirror);
--
-- Name: IDX_repository_is_private; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_is_private" ON public.repository USING btree (is_private);
--
-- Name: IDX_repository_is_template; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_is_template" ON public.repository USING btree (is_template);
--
-- Name: IDX_repository_lower_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_lower_name" ON public.repository USING btree (lower_name);
--
-- Name: IDX_repository_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_name" ON public.repository USING btree (name);
--
-- Name: IDX_repository_original_service_type; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_original_service_type" ON public.repository USING btree (original_service_type);
--
-- Name: IDX_repository_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_owner_id" ON public.repository USING btree (owner_id);
--
-- Name: IDX_repository_template_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_template_id" ON public.repository USING btree (template_id);
--
-- Name: IDX_repository_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_repository_updated_unix" ON public.repository USING btree (updated_unix);
--
-- Name: IDX_review_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_review_created_unix" ON public.review USING btree (created_unix);
--
-- Name: IDX_review_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_review_issue_id" ON public.review USING btree (issue_id);
--
-- Name: IDX_review_reviewer_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_review_reviewer_id" ON public.review USING btree (reviewer_id);
--
-- Name: IDX_review_state_pull_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_review_state_pull_id" ON public.review_state USING btree (pull_id);
--
-- Name: IDX_review_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_review_updated_unix" ON public.review USING btree (updated_unix);
--
-- Name: IDX_secret_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_secret_owner_id" ON public.secret USING btree (owner_id);
--
-- Name: IDX_secret_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_secret_repo_id" ON public.secret USING btree (repo_id);
--
-- Name: IDX_star_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_star_created_unix" ON public.star USING btree (created_unix);
--
-- Name: IDX_stopwatch_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_stopwatch_issue_id" ON public.stopwatch USING btree (issue_id);
--
-- Name: IDX_stopwatch_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_stopwatch_user_id" ON public.stopwatch USING btree (user_id);
--
-- Name: IDX_task_doer_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_task_doer_id" ON public.task USING btree (doer_id);
--
-- Name: IDX_task_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_task_owner_id" ON public.task USING btree (owner_id);
--
-- Name: IDX_task_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_task_repo_id" ON public.task USING btree (repo_id);
--
-- Name: IDX_task_status; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_task_status" ON public.task USING btree (status);
--
-- Name: IDX_team_invite_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_team_invite_created_unix" ON public.team_invite USING btree (created_unix);
--
-- Name: IDX_team_invite_org_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_team_invite_org_id" ON public.team_invite USING btree (org_id);
--
-- Name: IDX_team_invite_team_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_team_invite_team_id" ON public.team_invite USING btree (team_id);
--
-- Name: IDX_team_invite_token; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_team_invite_token" ON public.team_invite USING btree (token);
--
-- Name: IDX_team_invite_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_team_invite_updated_unix" ON public.team_invite USING btree (updated_unix);
--
-- Name: IDX_team_org_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_team_org_id" ON public.team USING btree (org_id);
--
-- Name: IDX_team_repo_org_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_team_repo_org_id" ON public.team_repo USING btree (org_id);
--
-- Name: IDX_team_unit_org_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_team_unit_org_id" ON public.team_unit USING btree (org_id);
--
-- Name: IDX_team_user_org_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_team_user_org_id" ON public.team_user USING btree (org_id);
--
-- Name: IDX_topic_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_topic_created_unix" ON public.topic USING btree (created_unix);
--
-- Name: IDX_topic_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_topic_updated_unix" ON public.topic USING btree (updated_unix);
--
-- Name: IDX_tracked_time_issue_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_tracked_time_issue_id" ON public.tracked_time USING btree (issue_id);
--
-- Name: IDX_tracked_time_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_tracked_time_user_id" ON public.tracked_time USING btree (user_id);
--
-- Name: IDX_two_factor_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_two_factor_created_unix" ON public.two_factor USING btree (created_unix);
--
-- Name: IDX_two_factor_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_two_factor_updated_unix" ON public.two_factor USING btree (updated_unix);
--
-- Name: IDX_user_badge_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_user_badge_user_id" ON public.user_badge USING btree (user_id);
--
-- Name: IDX_user_blocking_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_user_blocking_created_unix" ON public.user_blocking USING btree (created_unix);
--
-- Name: IDX_user_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_user_created_unix" ON public."user" USING btree (created_unix);
--
-- Name: IDX_user_is_active; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_user_is_active" ON public."user" USING btree (is_active);
--
-- Name: IDX_user_last_login_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_user_last_login_unix" ON public."user" USING btree (last_login_unix);
--
-- Name: IDX_user_open_id_uid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_user_open_id_uid" ON public.user_open_id USING btree (uid);
--
-- Name: IDX_user_redirect_lower_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_user_redirect_lower_name" ON public.user_redirect USING btree (lower_name);
--
-- Name: IDX_user_setting_setting_key; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_user_setting_setting_key" ON public.user_setting USING btree (setting_key);
--
-- Name: IDX_user_setting_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_user_setting_user_id" ON public.user_setting USING btree (user_id);
--
-- Name: IDX_user_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_user_updated_unix" ON public."user" USING btree (updated_unix);
--
-- Name: IDX_watch_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_watch_created_unix" ON public.watch USING btree (created_unix);
--
-- Name: IDX_watch_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_watch_updated_unix" ON public.watch USING btree (updated_unix);
--
-- Name: IDX_webauthn_credential_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_webauthn_credential_created_unix" ON public.webauthn_credential USING btree (created_unix);
--
-- Name: IDX_webauthn_credential_credential_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_webauthn_credential_credential_id" ON public.webauthn_credential USING btree (credential_id);
--
-- Name: IDX_webauthn_credential_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_webauthn_credential_updated_unix" ON public.webauthn_credential USING btree (updated_unix);
--
-- Name: IDX_webauthn_credential_user_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_webauthn_credential_user_id" ON public.webauthn_credential USING btree (user_id);
--
-- Name: IDX_webhook_created_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_webhook_created_unix" ON public.webhook USING btree (created_unix);
--
-- Name: IDX_webhook_is_active; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_webhook_is_active" ON public.webhook USING btree (is_active);
--
-- Name: IDX_webhook_owner_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_webhook_owner_id" ON public.webhook USING btree (owner_id);
--
-- Name: IDX_webhook_repo_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_webhook_repo_id" ON public.webhook USING btree (repo_id);
--
-- Name: IDX_webhook_updated_unix; Type: INDEX; Schema: public; Owner: gitea
--
CREATE INDEX "IDX_webhook_updated_unix" ON public.webhook USING btree (updated_unix);
--
-- Name: UQE_access_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_access_s" ON public.access USING btree (user_id, repo_id);
--
-- Name: UQE_access_token_token_hash; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_access_token_token_hash" ON public.access_token USING btree (token_hash);
--
-- Name: UQE_action_artifact_runid_name_path; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_action_artifact_runid_name_path" ON public.action_artifact USING btree (run_id, artifact_path, artifact_name);
--
-- Name: UQE_action_run_repo_index; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_action_run_repo_index" ON public.action_run USING btree (repo_id, index);
--
-- Name: UQE_action_runner_token_hash; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_action_runner_token_hash" ON public.action_runner USING btree (token_hash);
--
-- Name: UQE_action_runner_token_token; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_action_runner_token_token" ON public.action_runner_token USING btree (token);
--
-- Name: UQE_action_runner_uuid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_action_runner_uuid" ON public.action_runner USING btree (uuid);
--
-- Name: UQE_action_task_output_task_id_output_key; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_action_task_output_task_id_output_key" ON public.action_task_output USING btree (task_id, output_key);
--
-- Name: UQE_action_task_step_task_index; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_action_task_step_task_index" ON public.action_task_step USING btree (task_id, index);
--
-- Name: UQE_action_task_token_hash; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_action_task_token_hash" ON public.action_task USING btree (token_hash);
--
-- Name: UQE_action_tasks_version_owner_repo; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_action_tasks_version_owner_repo" ON public.action_tasks_version USING btree (owner_id, repo_id);
--
-- Name: UQE_action_variable_owner_repo_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_action_variable_owner_repo_name" ON public.action_variable USING btree (owner_id, repo_id, name);
--
-- Name: UQE_attachment_uuid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_attachment_uuid" ON public.attachment USING btree (uuid);
--
-- Name: UQE_badge_slug; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_badge_slug" ON public.badge USING btree (slug);
--
-- Name: UQE_branch_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_branch_s" ON public.branch USING btree (repo_id, name);
--
-- Name: UQE_collaboration_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_collaboration_s" ON public.collaboration USING btree (repo_id, user_id);
--
-- Name: UQE_commit_status_index_repo_sha; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_commit_status_index_repo_sha" ON public.commit_status_index USING btree (repo_id, sha);
--
-- Name: UQE_commit_status_repo_sha_index; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_commit_status_repo_sha_index" ON public.commit_status USING btree (index, repo_id, sha);
--
-- Name: UQE_commit_status_summary_repo_id_sha; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_commit_status_summary_repo_id_sha" ON public.commit_status_summary USING btree (repo_id, sha);
--
-- Name: UQE_dbfs_meta_full_path; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_dbfs_meta_full_path" ON public.dbfs_meta USING btree (full_path);
--
-- Name: UQE_deploy_key_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_deploy_key_s" ON public.deploy_key USING btree (key_id, repo_id);
--
-- Name: UQE_email_address_email; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_email_address_email" ON public.email_address USING btree (email);
--
-- Name: UQE_email_address_lower_email; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_email_address_lower_email" ON public.email_address USING btree (lower_email);
--
-- Name: UQE_email_hash_email; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_email_hash_email" ON public.email_hash USING btree (email);
--
-- Name: UQE_follow_follow; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_follow_follow" ON public.follow USING btree (user_id, follow_id);
--
-- Name: UQE_hook_task_uuid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_hook_task_uuid" ON public.hook_task USING btree (uuid);
--
-- Name: UQE_issue_dependency_issue_dependency; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_issue_dependency_issue_dependency" ON public.issue_dependency USING btree (issue_id, dependency_id);
--
-- Name: UQE_issue_label_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_issue_label_s" ON public.issue_label USING btree (issue_id, label_id);
--
-- Name: UQE_issue_repo_index; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_issue_repo_index" ON public.issue USING btree (repo_id, index);
--
-- Name: UQE_issue_user_uid_to_issue; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_issue_user_uid_to_issue" ON public.issue_user USING btree (uid, issue_id);
--
-- Name: UQE_issue_watch_watch; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_issue_watch_watch" ON public.issue_watch USING btree (user_id, issue_id);
--
-- Name: UQE_language_stat_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_language_stat_s" ON public.language_stat USING btree (repo_id, language);
--
-- Name: UQE_lfs_meta_object_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_lfs_meta_object_s" ON public.lfs_meta_object USING btree (oid, repository_id);
--
-- Name: UQE_login_source_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_login_source_name" ON public.login_source USING btree (name);
--
-- Name: UQE_oauth2_application_client_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_oauth2_application_client_id" ON public.oauth2_application USING btree (client_id);
--
-- Name: UQE_oauth2_authorization_code_code; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_oauth2_authorization_code_code" ON public.oauth2_authorization_code USING btree (code);
--
-- Name: UQE_oauth2_grant_user_application; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_oauth2_grant_user_application" ON public.oauth2_grant USING btree (user_id, application_id);
--
-- Name: UQE_org_user_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_org_user_s" ON public.org_user USING btree (uid, org_id);
--
-- Name: UQE_package_blob_md5; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_package_blob_md5" ON public.package_blob USING btree (hash_md5);
--
-- Name: UQE_package_blob_sha1; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_package_blob_sha1" ON public.package_blob USING btree (hash_sha1);
--
-- Name: UQE_package_blob_sha256; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_package_blob_sha256" ON public.package_blob USING btree (hash_sha256);
--
-- Name: UQE_package_blob_sha512; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_package_blob_sha512" ON public.package_blob USING btree (hash_sha512);
--
-- Name: UQE_package_cleanup_rule_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_package_cleanup_rule_s" ON public.package_cleanup_rule USING btree (owner_id, type);
--
-- Name: UQE_package_file_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_package_file_s" ON public.package_file USING btree (version_id, lower_name, composite_key);
--
-- Name: UQE_package_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_package_s" ON public.package USING btree (owner_id, type, lower_name);
--
-- Name: UQE_package_version_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_package_version_s" ON public.package_version USING btree (package_id, lower_version);
--
-- Name: UQE_protected_branch_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_protected_branch_s" ON public.protected_branch USING btree (repo_id, branch_name);
--
-- Name: UQE_pull_auto_merge_pull_id; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_pull_auto_merge_pull_id" ON public.pull_auto_merge USING btree (pull_id);
--
-- Name: UQE_reaction_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_reaction_s" ON public.reaction USING btree (type, issue_id, comment_id, user_id, original_author_id, original_author);
--
-- Name: UQE_release_n; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_release_n" ON public.release USING btree (repo_id, tag_name);
--
-- Name: UQE_repo_archiver_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_repo_archiver_s" ON public.repo_archiver USING btree (repo_id, type, commit_id);
--
-- Name: UQE_repo_license_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_repo_license_s" ON public.repo_license USING btree (repo_id, license);
--
-- Name: UQE_repo_redirect_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_repo_redirect_s" ON public.repo_redirect USING btree (owner_id, lower_name);
--
-- Name: UQE_repository_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_repository_s" ON public.repository USING btree (owner_id, lower_name);
--
-- Name: UQE_review_state_pull_commit_user; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_review_state_pull_commit_user" ON public.review_state USING btree (user_id, pull_id, commit_sha);
--
-- Name: UQE_secret_owner_repo_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_secret_owner_repo_name" ON public.secret USING btree (owner_id, repo_id, name);
--
-- Name: UQE_star_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_star_s" ON public.star USING btree (uid, repo_id);
--
-- Name: UQE_system_setting_setting_key; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_system_setting_setting_key" ON public.system_setting USING btree (setting_key);
--
-- Name: UQE_team_invite_team_mail; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_team_invite_team_mail" ON public.team_invite USING btree (team_id, email);
--
-- Name: UQE_team_repo_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_team_repo_s" ON public.team_repo USING btree (team_id, repo_id);
--
-- Name: UQE_team_unit_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_team_unit_s" ON public.team_unit USING btree (team_id, type);
--
-- Name: UQE_team_user_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_team_user_s" ON public.team_user USING btree (team_id, uid);
--
-- Name: UQE_topic_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_topic_name" ON public.topic USING btree (name);
--
-- Name: UQE_two_factor_uid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_two_factor_uid" ON public.two_factor USING btree (uid);
--
-- Name: UQE_upload_uuid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_upload_uuid" ON public.upload USING btree (uuid);
--
-- Name: UQE_user_blocking_block; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_user_blocking_block" ON public.user_blocking USING btree (blocker_id, blockee_id);
--
-- Name: UQE_user_lower_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_user_lower_name" ON public."user" USING btree (lower_name);
--
-- Name: UQE_user_name; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_user_name" ON public."user" USING btree (name);
--
-- Name: UQE_user_open_id_uri; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_user_open_id_uri" ON public.user_open_id USING btree (uri);
--
-- Name: UQE_user_redirect_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_user_redirect_s" ON public.user_redirect USING btree (lower_name);
--
-- Name: UQE_user_setting_key_userid; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_user_setting_key_userid" ON public.user_setting USING btree (user_id, setting_key);
--
-- Name: UQE_watch_watch; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_watch_watch" ON public.watch USING btree (user_id, repo_id);
--
-- Name: UQE_webauthn_credential_s; Type: INDEX; Schema: public; Owner: gitea
--
CREATE UNIQUE INDEX "UQE_webauthn_credential_s" ON public.webauthn_credential USING btree (lower_name, user_id);
--
-- PostgreSQL database dump complete
--