Remove created_at / updated_at column definitions since these duplicate t.timestamps
This commit is contained in:
parent
c00c515d9d
commit
67a95ac7e9
3 changed files with 2 additions and 9 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue