journalduhacker/db/migrate/20120906183346_default_filtered_tags.rb

9 lines
161 B
Ruby

class DefaultFilteredTags < ActiveRecord::Migration
def up
add_column :tags, :filtered_by_default, :boolean, :default => false
end
def down
end
end