6 lines
130 B
Ruby
6 lines
130 B
Ruby
class AddCreatedByToContract < ActiveRecord::Migration
|
|
def change
|
|
add_column :contracts, :created_by_id, :integer
|
|
end
|
|
end
|