From 1eb020fcc4a473f00670d7af131c9c9926c7fc6c Mon Sep 17 00:00:00 2001 From: justcool393 Date: Thu, 15 Dec 2022 21:47:20 -0600 Subject: [PATCH] fix migration lol --- migrations/20221215-add-price-paid.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/20221215-add-price-paid.sql b/migrations/20221215-add-price-paid.sql index 8d1e64a6d..60b5b51e3 100644 --- a/migrations/20221215-add-price-paid.sql +++ b/migrations/20221215-add-price-paid.sql @@ -1,5 +1,5 @@ BEGIN -ALTER TABLE award_relationships ADD COLUMN price_paid NOT NULL DEFAULT 0; +ALTER TABLE award_relationships ADD COLUMN price_paid INTEGER NOT NULL DEFAULT 0; ALTER TABLE award_relationships ALTER COLUMN kind SET NOT NULL; -- populate existing awards, this should match the values in files/helpers/config/awards.py