Skip to content

Commit

Permalink
added missing 'tokenType' columm on V_CrcV1_Transfers
Browse files Browse the repository at this point in the history
  • Loading branch information
jaensen committed Sep 12, 2024
1 parent a22bc20 commit 69f0e0b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Circles.Index.CirclesViews/DatabaseSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ UNION ALL
new("from", ValueTypes.Address, true),
new("to", ValueTypes.Address, true),
new("amount", ValueTypes.BigInt, false),
new("type", ValueTypes.String, false)
new("type", ValueTypes.String, true),
new("tokenType", ValueTypes.String, true)
])
{
SqlMigrationItem = new SqlMigrationItem(@"
Expand Down Expand Up @@ -234,7 +235,8 @@ LEFT JOIN (SELECT cid_1.avatar,
new("to", ValueTypes.Address, true),
new("id", ValueTypes.BigInt, true),
new("value", ValueTypes.BigInt, false),
new("type", ValueTypes.String, false)
new("type", ValueTypes.String, true),
new("tokenType", ValueTypes.String, true)
])
{
SqlMigrationItem = new SqlMigrationItem(@"
Expand Down Expand Up @@ -487,7 +489,8 @@ UNION ALL
new("to", ValueTypes.Address, true),
new("id", ValueTypes.BigInt, true),
new("value", ValueTypes.BigInt, false),
new("type", ValueTypes.String, false)
new("type", ValueTypes.String, true),
new("tokenType", ValueTypes.String, true)
])
{
SqlMigrationItem = new SqlMigrationItem(@"
Expand Down

0 comments on commit 69f0e0b

Please sign in to comment.