class PaidPermissions < ActiveRecord::Migration
  def self.up
    add_column :permissions, :target_paid, :boolean
  end

  def self.down
    remove_column :permissions, :target_paid
  end
end

