Add ordering feature on piece justificative view
This commit is contained in:
parent
35a07aec87
commit
1551b7ce21
17 changed files with 343 additions and 23 deletions
|
@ -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
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20160524093540) do
|
||||
ActiveRecord::Schema.define(version: 20160607150440) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -278,6 +278,7 @@ ActiveRecord::Schema.define(version: 20160524093540) do
|
|||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.integer "procedure_id"
|
||||
t.integer "order_place"
|
||||
end
|
||||
|
||||
create_table "users", force: :cascade do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue