mirror of
https://github.com/status-im/open-bounty.git
synced 2025-02-17 11:56:30 +00:00
13 lines
320 B
MySQL
13 lines
320 B
MySQL
|
|
||
|
-- 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);
|