6 lines
119 B
Ruby
6 lines
119 B
Ruby
class AddObjetToContacts < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :contacts, :objet, :text
|
|
end
|
|
end
|