Merge pull request #1135 from ChuckNorrison/postgre-bigint

fix integer to bigint for extensions
This commit is contained in:
calle
2022-11-29 12:11:07 +01:00
committed by GitHub
7 changed files with 25 additions and 25 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ async def m001_initial(db):
id {db.serial_primary_key},
wallet TEXT NOT NULL,
description TEXT NOT NULL,
amount INTEGER NOT NULL,
amount {db.big_int} NOT NULL,
served_meta INTEGER NOT NULL,
served_pr INTEGER NOT NULL
);