mirror of
https://github.com/status-im/open-bounty.git
synced 2025-01-09 17:15:38 +00:00
2599b85d41
* backend support for activity feed * partial frontend support (still needs work) * save issue modification timestamp to db * rename commit-id -> commit-sha everywhere for consistency * "No data" texts for UI collections when no data exists
6 lines
272 B
SQL
6 lines
272 B
SQL
ALTER TABLE "public"."issues" ADD COLUMN "updated" timestamp without time zone DEFAULT timezone('utc'::text, now());
|
|
|
|
ALTER TABLE "public"."issues" RENAME COLUMN "commit_id" TO "commit_sha";
|
|
|
|
ALTER TABLE "public"."pull_requests" RENAME COLUMN "commit_id" TO "commit_sha";
|