about summary refs log tree commit diff
path: root/db/migrate/20190901035623_add_max_score_to_tags.rb
blob: f936e987182f26a0b3e00bda3e4d49fa8f8d3ca3 (plain) (blame)
1
2
3
4
5
6
class AddMaxScoreToTags < ActiveRecord::Migration[5.2]
  def change
    add_column :tags, :max_score, :float
    add_column :tags, :max_score_at, :datetime
  end
end