mirror of
https://github.com/status-im/open-bounty.git
synced 2025-02-18 20:36:31 +00:00
* removed old swing JEditorPane based html to png rendering due to it's lack of support for modern css * new implementation uses wkhtmltoimage (on prod server via wrapper script using xvfb) * no longer generating image on every GET request for QR, but rather generating image when a bounty is cretaed or contract balance changes * images stored to DB * comment image design updated according to UI spec
13 lines
320 B
SQL
13 lines
320 B
SQL
|
|
-- this column was never used
|
|
ALTER TABLE "repositories" DROP COLUMN IF EXISTS "updated";
|
|
|
|
-- needde for foreign key
|
|
ALTER TABLE "issues" ADD UNIQUE ("issue_id");
|
|
|
|
-- table for github PNG comment images
|
|
CREATE TABLE issue_comment (
|
|
id SERIAL PRIMARY KEY,
|
|
issue_id INTEGER REFERENCES issues (issue_id),
|
|
png_data bytea);
|