7 lines
167 B
Ruby
7 lines
167 B
Ruby
class AddInfosSupsToContacts < ActiveRecord::Migration
|
|
def change
|
|
add_column :contacts, :sheet_type, :string
|
|
add_column :contacts, :owner, :string
|
|
end
|
|
end
|