fix integer to bigint for extensions

Some more INTEGER to BIGINT conversion for postgresql database
This commit is contained in:
ChuckNorrison
2022-11-17 15:44:59 +01:00
parent 823b981fc4
commit 3cbbe2a93d
7 changed files with 15 additions and 15 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
);