Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hivemind
Merge requests
!293
full sync tavern tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
full sync tavern tests
pmaniora_full_sync_tavern_tests
into
develop
Overview
3
Commits
3
Pipelines
0
Changes
6
Merged
Pawel Maniora
requested to merge
pmaniora_full_sync_tavern_tests
into
develop
4 years ago
Overview
3
Commits
3
Pipelines
0
Changes
6
Expand
0
0
Merge request reports
Compare
version 10
version 14
9986e8e9
4 years ago
version 13
92ce6728
4 years ago
version 12
f1b2b646
4 years ago
version 11
dead2fbc
4 years ago
version 10
6da99c78
4 years ago
version 9
e7d8ed99
4 years ago
version 8
cff31a85
4 years ago
version 7
c046a48d
4 years ago
version 6
54efa05a
4 years ago
version 5
d9b4c0db
4 years ago
version 4
e04a326e
4 years ago
version 3
8c1761db
4 years ago
version 2
56c44844
4 years ago
version 1
7d815099
4 years ago
develop (base)
and
version 11
latest version
00b73b77
3 commits,
4 years ago
version 14
9986e8e9
3 commits,
4 years ago
version 13
92ce6728
3 commits,
4 years ago
version 12
f1b2b646
2 commits,
4 years ago
version 11
dead2fbc
2 commits,
4 years ago
version 10
6da99c78
3 commits,
4 years ago
version 9
e7d8ed99
3 commits,
4 years ago
version 8
cff31a85
3 commits,
4 years ago
version 7
c046a48d
2 commits,
4 years ago
version 6
54efa05a
1 commit,
4 years ago
version 5
d9b4c0db
1 commit,
4 years ago
version 4
e04a326e
2 commits,
4 years ago
version 3
8c1761db
2 commits,
4 years ago
version 2
56c44844
1 commit,
4 years ago
version 1
7d815099
1 commit,
4 years ago
Show latest version
6 files
+
219
−
78
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
hive/db/sql_scripts/condenser_api_post_type.sql
0 → 100644
+
32
−
0
Options
DROP
TYPE
IF
EXISTS
condenser_api_post
CASCADE
;
-- type for regular condenser_api posts
CREATE
TYPE
condenser_api_post
AS
(
id
INT
,
entry_id
INT
,
-- used for paging with offset (otherwise can be any value)
author
VARCHAR
(
16
),
permlink
VARCHAR
(
255
),
author_rep
BIGINT
,
title
VARCHAR
(
512
),
body
TEXT
,
category
VARCHAR
(
255
),
depth
SMALLINT
,
promoted
DECIMAL
(
10
,
3
),
payout
DECIMAL
(
10
,
3
),
pending_payout
DECIMAL
(
10
,
3
),
payout_at
TIMESTAMP
,
is_paidout
BOOLEAN
,
children
INT
,
created_at
TIMESTAMP
,
updated_at
TIMESTAMP
,
reblogged_at
TIMESTAMP
,
-- used when post data is combined with hive_feed_cache (otherwise can be date)
rshares
NUMERIC
,
json
TEXT
,
parent_author
VARCHAR
(
16
),
parent_permlink_or_category
VARCHAR
(
255
),
curator_payout_value
VARCHAR
(
30
),
max_accepted_payout
VARCHAR
(
30
),
percent_hbd
INT
,
beneficiaries
JSON
,
url
TEXT
,
root_title
VARCHAR
(
512
)
);
Loading