mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 09:26:49 +00:00
* check in * WIP check in * WIP check in * locked LP actions and balances * add business logic test, fix test failure & typos * ds store * ds store * more logic tests
28 lines
736 B
YAML
28 lines
736 B
YAML
version: 2
|
|
models:
|
|
- name: silver__locked_liquidity_transactions
|
|
description: helper table for locked LPs
|
|
tests:
|
|
- dbt_utils.unique_combination_of_columns:
|
|
combination_of_columns:
|
|
- TX_ID
|
|
- MSG_GROUP
|
|
- MSG_SUB_GROUP
|
|
- LOCK_ID
|
|
columns:
|
|
- name: TX_ID
|
|
description: "{{ doc('tx_id') }}"
|
|
tests:
|
|
- not_null
|
|
- name: MSG_GROUP
|
|
description: "{{ doc('msg_group') }}"
|
|
tests:
|
|
- not_null
|
|
- name: MSG_SUB_GROUP
|
|
description: "{{ doc('msg_sub_group') }}"
|
|
tests:
|
|
- not_null
|
|
- name: LOCK_ID
|
|
description: "{{ doc('lock_id') }}"
|
|
tests:
|
|
- not_null |