journalduhacker/db/migrate/20140221164400_inactive_tags.rb

6 lines
129 B
Ruby

class InactiveTags < ActiveRecord::Migration
def change
add_column :tags, :inactive, :boolean, :default => false
end
end