Files
discourse/db/migrate/20140206044818_add_locale_to_user.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
158 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddLocaleToUser < ActiveRecord::Migration[4.2]
def change
add_column :users, :locale, :string, limit: 10
end
end