20190805123746_add_capabilities_to_tags.rb 307 B

123456789
  1. class AddCapabilitiesToTags < ActiveRecord::Migration[5.2]
  2. def change
  3. add_column :tags, :usable, :boolean
  4. add_column :tags, :trendable, :boolean
  5. add_column :tags, :listable, :boolean
  6. add_column :tags, :reviewed_at, :datetime
  7. add_column :tags, :requested_review_at, :datetime
  8. end
  9. end