2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2022-11-09 17:05:21 -03:00
|
|
|
class AddCreatedAttoQanswer < ActiveRecord::Migration[4.2]
|
2015-03-04 15:10:11 +01:00
|
|
|
def change
|
|
|
|
|
add_column :qanswers, :created_at, :datetime
|
|
|
|
|
add_column :qanswers, :updated_at, :datetime
|
|
|
|
|
end
|
|
|
|
|
end
|