Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add asset_id missing columns to both trustlines and offers stagings #33

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions models/staging/stg_offers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ with
, selling_asset_type
, selling_asset_code
, selling_asset_issuer
, selling_asset_id
, buying_asset_type
, buying_asset_code
, buying_asset_issuer
, buying_asset_id
, amount
, pricen
, priced
Expand Down
3 changes: 2 additions & 1 deletion models/staging/stg_trust_lines.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ with
, asset_type
, asset_issuer
, asset_code
, asset_id
, liquidity_pool_id
, balance
, trust_line_limit
Expand All @@ -35,4 +36,4 @@ with
)

select *
from trust_lines
from trust_lines
Loading