X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d5f02968f6f2dd153c74844e818a4d2b2ae24991..f72c34aaf85b736a2d4b880886ca84f490b28ba0:/db/structure.sql diff --git a/db/structure.sql b/db/structure.sql index 6b34868e1..4c1328a18 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -673,6 +673,7 @@ CREATE TABLE issue_comments ( commenter_user_id integer, body text, created_at timestamp without time zone NOT NULL, + reassign boolean, updated_at timestamp without time zone NOT NULL ); @@ -706,10 +707,12 @@ CREATE TABLE issues ( reportable_id integer NOT NULL, reported_user_id integer NOT NULL, status integer, + issue_type character varying, resolved_at timestamp without time zone, resolved_by integer, created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + updated_at timestamp without time zone NOT NULL, + updated_by integer );