6 lines
114 B
Ruby
6 lines
114 B
Ruby
class AddObjetToContacts < ActiveRecord::Migration
|
|
def change
|
|
add_column :contacts, :objet, :text
|
|
end
|
|
end
|