view db/migrate/044_set_language_length_to_five.rb @ 127:32b5adec7422 cannam

Bug #51: make New Member box show matching users only when at least 2 characters have been typed in search (avoid really long results lists)
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Wed, 19 Jan 2011 13:27:01 +0000
parents 513646585e45
children
line wrap: on
line source
class SetLanguageLengthToFive < ActiveRecord::Migration
  def self.up
    change_column :users, :language, :string, :limit => 5, :default => ""
  end

  def self.down
    raise IrreversibleMigration
  end
end