Add creation/update times to qanswers

This commit is contained in:
Henne Vogelsang 2015-03-04 15:10:11 +01:00
parent 0894d9ec29
commit c7271780f2
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,6 @@
class AddCreatedAttoQanswer < ActiveRecord::Migration
def change
add_column :qanswers, :created_at, :datetime
add_column :qanswers, :updated_at, :datetime
end
end