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