6 lines
119 B
Ruby
6 lines
119 B
Ruby
|
class AddOwnertoProject < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :projects, :owner_id, :integer
|
||
|
end
|
||
|
end
|