The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

10 行
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