view db/migrate/.svn/text-base/084_change_auth_sources_account_limit.rb.svn-base @ 31:d0edd5f981fd live

* Merge from cannam branch
author Chris Cannam
date Fri, 01 Oct 2010 15:34:36 +0100
parents 513646585e45
children
line wrap: on
line source
class ChangeAuthSourcesAccountLimit < ActiveRecord::Migration
  def self.up
    change_column :auth_sources, :account, :string, :limit => nil
  end

  def self.down
    change_column :auth_sources, :account, :string, :limit => 60
  end
end