]> git.openstreetmap.org Git - rails.git/blobdiff - db/structure.sql
Added Issue Type + Issue Reassigning + Last updated_by
[rails.git] / db / structure.sql
index 6b34868e149a736956809c6dd0f01159f4040f9f..4c1328a183564db1e5e81acfe0b15e94fdc08687 100644 (file)
@@ -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
 );