Service: add organisme, email, tel, horaires, adresse

This commit is contained in:
simon lehericey 2018-05-10 11:38:11 +02:00
parent 0be21395ac
commit 39bb56d1d9
8 changed files with 66 additions and 2 deletions

View file

@ -0,0 +1,9 @@
class AddColumnsToService < ActiveRecord::Migration[5.2]
def change
add_column :services, :organisme, :string
add_column :services, :email, :string
add_column :services, :telephone, :string
add_column :services, :horaires, :text
add_column :services, :adresse, :text
end
end