]> git.openstreetmap.org Git - rails.git/commitdiff
Remove created_at / updated_at column definitions since these duplicate t.timestamps
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 13 Sep 2017 13:35:49 +0000 (14:35 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 13 Sep 2017 13:57:07 +0000 (14:57 +0100)
db/migrate/20160822153055_create_issues_and_reports.rb
db/migrate/20160822153115_create_issue_comments.rb
db/structure.sql

index 20d4fb2754e85030ee32ebf85b4e970d9f331f39..a25523cb9c57b68263a37f845037670c1107966a 100644 (file)
@@ -10,10 +10,7 @@ class CreateIssuesAndReports < ActiveRecord::Migration
       t.string :issue_type
       t.datetime :resolved_at
       t.integer :resolved_by
-      t.datetime :created_at
-      t.datetime :updated_at
       t.integer :updated_by
-
       t.timestamps :null => false
     end
 
@@ -26,9 +23,6 @@ class CreateIssuesAndReports < ActiveRecord::Migration
       t.integer :issue_id
       t.integer :reporter_user_id
       t.text :details, :null => false
-      t.datetime :created_at
-      t.datetime :updated_at
-
       t.timestamps :null => false
     end
 
index 57e35f48b8af094765d578743ee90aa9a6b2fae6..e3c379bc1e2bf9ce92d73857028b963a9a0704c7 100644 (file)
@@ -4,7 +4,6 @@ class CreateIssueComments < ActiveRecord::Migration
       t.integer :issue_id
       t.integer :commenter_user_id
       t.text :body
-      t.datetime :created_at
       t.boolean :reassign
       t.timestamps :null => false
     end
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
 );