trabajo-afectivo/db/migrate/20150979000001_update_timestamps.rb

20 lines
636 B
Ruby
Raw Normal View History

2017-09-08 08:28:34 +00:00
class UpdateTimestamps < ActiveRecord::Migration[4.2]
2015-09-27 21:01:45 +00:00
def up
# return if it's a new setup
return if !Setting.find_by(name: 'system_init_done')
2015-09-27 21:01:45 +00:00
# get all models
2017-11-23 08:09:44 +00:00
Models.all.each_value do |value|
2015-09-27 21:01:45 +00:00
next if !value
next if !value[:attributes]
if value[:attributes].include?('updated_at')
ActiveRecord::Migration.change_column value[:table].to_sym, :updated_at, :datetime, limit: 3, null: false
2015-09-27 21:01:45 +00:00
end
if value[:attributes].include?('created_at')
ActiveRecord::Migration.change_column value[:table].to_sym, :created_at, :datetime, limit: 3, null: false
2015-09-27 21:01:45 +00:00
end
end
2015-09-27 21:01:45 +00:00
end
end