mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 10:16:03 +01:00
6 lines
111 B
Ruby
6 lines
111 B
Ruby
|
class AddLocaleToUser < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :users, :locale, :string
|
||
|
end
|
||
|
end
|