open-bounty/resources/migrations/20170225134040-top-hunters.up.sql
Teemu Patja c33fb858f9
"Top Hunters" feature + more
* frontend + backend support for top hunters
* fix issues with bounties view
* logging
* cleanup
2017-02-26 16:14:39 +02:00

5 lines
184 B
SQL

ALTER TABLE "public"."issues"
ALTER COLUMN "balance" DROP DEFAULT,
ALTER COLUMN "balance" SET DATA TYPE decimal USING (balance::numeric),
ALTER COLUMN "balance" SET DEFAULT 0.0;