summaryrefslogtreecommitdiffstats
path: root/db/migrate/044_set_language_length_to_five.rb
blob: a417f7d7018a0c9d9affb18c805ee7cfc13555ff (plain)
1
2
3
4
5
6
7
8
9
class SetLanguageLengthToFive < ActiveRecord::Migration
  def self.up
    change_column :users, :language, :string, :limit => 5, :default => ""
  end

  def self.down
    raise IrreversibleMigration
  end
end