The code powering m.abunchtell.com https://m.abunchtell.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

10 řádky
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