Skip to content

Commit

Permalink
fix(api-cardano-db-hasura): remove VARCHAR limits from Asset table
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyslbw committed Feb 1, 2023
1 parent a1cbfde commit a4092f8
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -15,15 +15,15 @@ CREATE TABLE IF NOT EXISTS "Asset" (
"assetId" BYTEA PRIMARY KEY,
"assetName" BYTEA,
"decimals" INT,
"description" VARCHAR(500),
"description" VARCHAR,
"fingerprint" CHAR(44),
"firstAppearedInSlot" INT,
"logo" VARCHAR(65536),
"logo" VARCHAR,
"metadataHash" CHAR(40),
"name" VARCHAR(50),
"name" VARCHAR,
"policyId" BYTEA,
"ticker" VARCHAR(9),
"url" VARCHAR(250)
"url" VARCHAR
);

CREATE OR REPLACE VIEW "Block" AS
Expand Down

0 comments on commit a4092f8

Please sign in to comment.