8 lines
183 B
Ruby
8 lines
183 B
Ruby
class AddArchiveToVContacts < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :v_contacts, :a_codeproprietaire, :string
|
|
|
|
VContact.update_code_proprietaires
|
|
end
|
|
end
|