Add ordering feature on piece justificative view

This commit is contained in:
Guillaume Lazzara 2016-06-08 16:45:18 +02:00
parent 35a07aec87
commit 1551b7ce21
17 changed files with 343 additions and 23 deletions

View file

@ -0,0 +1,9 @@
class AddOrderPlaceInTypeDePieceJustificative < ActiveRecord::Migration
def up
add_column :types_de_piece_justificative, :order_place, :integer
end
def down
remove_column :types_de_piece_justificative, :order_place
end
end