The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
307 B

  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