Skip to content

txnID and symbol columns added #34

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

Merged
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
4 changes: 2 additions & 2 deletions services/hasura/metadata/remote_schemas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
type_names:
mapping: {}
prefix: daohaus_stats_xdai
comment: ''
comment: ""
- name: DaoHaus-xDai
definition:
url: https://api.thegraph.com/subgraphs/name/odyssy-automaton/daohaus-xdai
Expand All @@ -17,7 +17,7 @@
type_names:
mapping: {}
prefix: daohaus_xdai
comment: ''
comment: ""
- name: Smart-Escrow-xDai
definition:
url: https://api.thegraph.com/subgraphs/name/dan13ram/xdai-smart-invoices
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."treasury_token_history" add column "txnID" text
-- null;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alter table "public"."treasury_token_history" add column "txnID" text
null;
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."treasury_token_history" add column "symbol" text
-- null;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
alter table "public"."treasury_token_history" add column "symbol" text
null;