20190805123746_add_capabilities_to_tags.rb 338 B

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