mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 14:09:53 +01:00
5 lines
116 B
Ruby
5 lines
116 B
Ruby
class AddLocaleToUser < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :users, :locale, :string
|
|
end
|
|
end
|