6 lines
148 B
Ruby
6 lines
148 B
Ruby
|
class AddTechnicalTitleToUserExtensions < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :user_extensions, :technical_title, :string
|
||
|
end
|
||
|
end
|