[#878] add liste of dossier in backoffice

This commit is contained in:
Tanguy PATTE 2015-09-22 11:56:14 +02:00
parent ca4e5130c2
commit 5b9acf3875
12 changed files with 54 additions and 25 deletions

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20150922082416) do
ActiveRecord::Schema.define(version: 20150922085811) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -34,19 +34,21 @@ ActiveRecord::Schema.define(version: 20150922082416) do
add_index "commentaires", ["dossier_id"], name: "index_commentaires_on_dossier_id", using: :btree
create_table "dossiers", force: :cascade do |t|
t.string "description"
t.boolean "autorisation_donnees"
t.string "position_lat"
t.string "position_lon"
t.string "ref_dossier"
t.string "nom_projet"
t.string "montant_projet"
t.string "montant_aide_demande"
t.string "lien_plus_infos"
t.string "mail_contact"
t.boolean "dossier_termine"
t.integer "procedure_id"
t.date "date_previsionnelle"
t.string "description"
t.boolean "autorisation_donnees"
t.string "position_lat"
t.string "position_lon"
t.string "ref_dossier"
t.string "nom_projet"
t.string "montant_projet"
t.string "montant_aide_demande"
t.string "lien_plus_infos"
t.string "mail_contact"
t.boolean "dossier_termine"
t.integer "procedure_id"
t.date "date_previsionnelle"
t.datetime "created_at", default: '2015-09-22 09:25:29'
t.datetime "updated_at", default: '2015-09-22 09:25:29'
end
add_index "dossiers", ["procedure_id"], name: "index_dossiers_on_procedure_id", using: :btree