about summary refs log tree commit diff
path: root/db/migrate/20190805123746_add_capabilities_to_tags.rb
blob: 43c7763b1bf0ac1e44de9f20c783a2ca7d11dd39 (plain) (blame)
1
2
3
4
5
6
7
8
9
class AddCapabilitiesToTags < ActiveRecord::Migration[5.2]
  def change
    add_column :tags, :usable, :boolean
    add_column :tags, :trendable, :boolean
    add_column :tags, :listable, :boolean
    add_column :tags, :reviewed_at, :datetime
    add_column :tags, :requested_review_at, :datetime
  end
end