summaryrefslogtreecommitdiffstats
path: root/db/migrate/044_set_language_length_to_five.rb
blob: 524b2327d072c6912b414a702d50e0a1e0fe3baf (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 ActiveRecord::IrreversibleMigration
  end
end