view db/migrate/044_set_language_length_to_five.rb @ 473:ec7c78040115 cannam_integration

Merge from branch "feature_36" into a specially created integration branch
author Chris Cannam
date Mon, 27 Jun 2011 12:28:32 +0100
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