6 lines
124 B
Ruby
6 lines
124 B
Ruby
|
class AddCosignerToContracts < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :contracts, :cosigner, :string
|
||
|
end
|
||
|
end
|