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

  def self.down
    raise IrreversibleMigration
  end
end