obsolete.ChilliProject/db/migrate/20100217010520_add_custom_f...

10 lines
210 B
Ruby

class AddCustomFilterToAuthSources < ActiveRecord::Migration
def self.up
add_column :auth_sources, :custom_filter, :string
end
def self.down
remove_column :auth_sources, :custom_filter
end
end