]> git.openstreetmap.org Git - rails.git/blobdiff - db/structure.sql
Remove created_at / updated_at column definitions since these duplicate t.timestamps
[rails.git] / db / structure.sql
index be0603e6ea299927e23c3b2140ccdbb39fd1ee5f..3d8900ccfc7c0c077f89b2d2d3a90a74cb1273fe 100644 (file)
@@ -694,8 +694,8 @@ CREATE TABLE issue_comments (
     issue_id integer,
     commenter_user_id integer,
     body text,
-    created_at timestamp without time zone NOT NULL,
     reassign boolean,
+    created_at timestamp without time zone NOT NULL,
     updated_at timestamp without time zone NOT NULL
 );
 
@@ -732,9 +732,9 @@ CREATE TABLE issues (
     issue_type character varying,
     resolved_at timestamp without time zone,
     resolved_by integer,
+    updated_by integer,
     created_at timestamp without time zone NOT NULL,
     updated_at timestamp without time zone NOT NULL,
-    updated_by integer,
     report_count integer DEFAULT 0
 );