mastodon/db/migrate/20190901035623_add_max_scor...

7 lines
166 B
Ruby

class AddMaxScoreToTags < ActiveRecord::Migration[5.2]
def change
add_column :tags, :max_score, :float
add_column :tags, :max_score_at, :datetime
end
end