The code powering m.abunchtell.com https://m.abunchtell.com
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

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