]> git.openstreetmap.org Git - rails.git/blobdiff - db/structure.sql
Remove the reassign column from issue_comments
[rails.git] / db / structure.sql
index cdf4fb7dccaf1700e50a0a47624268d33c842972..83257318313d623d21540137cde83bf60ca64170 100644 (file)
@@ -691,10 +691,9 @@ ALTER SEQUENCE gpx_files_id_seq OWNED BY gpx_files.id;
 
 CREATE TABLE issue_comments (
     id integer NOT NULL,
-    issue_id integer,
-    commenter_user_id integer,
-    body text,
-    reassign boolean,
+    issue_id integer NOT NULL,
+    commenter_user_id integer NOT NULL,
+    body text NOT NULL,
     created_at timestamp without time zone NOT NULL,
     updated_at timestamp without time zone NOT NULL
 );