Add API index on Dossier.
This commit is contained in:
parent
6dfdb474a5
commit
78bd982f97
6 changed files with 107 additions and 4 deletions
|
@ -0,0 +1,6 @@
|
|||
class RemoveDefaultDateToDossier < ActiveRecord::Migration
|
||||
def change
|
||||
change_column_default(:dossiers, :created_at, nil)
|
||||
change_column_default(:dossiers, :updated_at, nil)
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20160106100227) do
|
||||
ActiveRecord::Schema.define(version: 20160120141602) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -63,8 +63,8 @@ ActiveRecord::Schema.define(version: 20160106100227) do
|
|||
t.boolean "autorisation_donnees"
|
||||
t.string "nom_projet"
|
||||
t.integer "procedure_id"
|
||||
t.datetime "created_at", default: '2015-12-07 09:51:23'
|
||||
t.datetime "updated_at", default: '2015-12-07 09:51:23'
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "state"
|
||||
t.integer "user_id"
|
||||
t.text "json_latlngs"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue