mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 17:16:04 +01:00
6 lines
123 B
Ruby
6 lines
123 B
Ruby
|
class AddDisplayNameToUsers < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :users, :display_name, :string
|
||
|
end
|
||
|
end
|