Add the siret column to the services table

This commit is contained in:
gregoirenovel 2018-07-19 15:05:53 +02:00
parent 082e8ed626
commit cfdbeca4da
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddSiretToServices < ActiveRecord::Migration[5.2]
def change
add_column :services, :siret, :string
end
end