6 lines
125 B
Ruby
6 lines
125 B
Ruby
class AddOrientedByToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :oriented_by_id, :integer
|
|
end
|
|
end
|