2015-08-10 11:05:06 +02:00
|
|
|
# encoding: UTF-8
|
|
|
|
# This file is auto-generated from the current state of the database. Instead
|
|
|
|
# of editing this file, please use the migrations feature of Active Record to
|
|
|
|
# incrementally modify your database, and then regenerate this schema definition.
|
|
|
|
#
|
|
|
|
# Note that this schema.rb definition is the authoritative source for your
|
|
|
|
# database schema. If you need to create the application database on another
|
|
|
|
# system, you should be using db:schema:load, not running all the migrations
|
|
|
|
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
|
|
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
|
|
#
|
|
|
|
# It's strongly recommended that you check this file into your version control system.
|
|
|
|
|
2016-05-24 12:51:53 +02:00
|
|
|
ActiveRecord::Schema.define(version: 20160524093540) do
|
2015-08-10 11:05:06 +02:00
|
|
|
|
|
|
|
# These are extensions that must be enabled in order to support this database
|
|
|
|
enable_extension "plpgsql"
|
|
|
|
|
2015-10-23 16:19:55 +02:00
|
|
|
create_table "administrateurs", force: :cascade do |t|
|
|
|
|
t.string "email", default: "", null: false
|
|
|
|
t.string "encrypted_password", default: "", null: false
|
|
|
|
t.string "reset_password_token"
|
|
|
|
t.datetime "reset_password_sent_at"
|
|
|
|
t.datetime "remember_created_at"
|
|
|
|
t.integer "sign_in_count", default: 0, null: false
|
|
|
|
t.datetime "current_sign_in_at"
|
|
|
|
t.datetime "last_sign_in_at"
|
|
|
|
t.inet "current_sign_in_ip"
|
|
|
|
t.inet "last_sign_in_ip"
|
|
|
|
t.datetime "created_at"
|
|
|
|
t.datetime "updated_at"
|
2015-12-14 17:28:36 +01:00
|
|
|
t.string "api_token"
|
2015-10-23 16:19:55 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index "administrateurs", ["email"], name: "index_administrateurs_on_email", unique: true, using: :btree
|
|
|
|
add_index "administrateurs", ["reset_password_token"], name: "index_administrateurs_on_reset_password_token", unique: true, using: :btree
|
|
|
|
|
2016-05-20 15:39:17 +02:00
|
|
|
create_table "administrateurs_gestionnaires", id: false, force: :cascade do |t|
|
|
|
|
t.integer "administrateur_id"
|
|
|
|
t.integer "gestionnaire_id"
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index "administrateurs_gestionnaires", ["administrateur_id"], name: "index_administrateurs_gestionnaires_on_administrateur_id", using: :btree
|
2016-05-24 16:39:39 +02:00
|
|
|
add_index "administrateurs_gestionnaires", ["gestionnaire_id", "administrateur_id"], name: "unique_couple_administrateur_gestionnaire", unique: true, using: :btree
|
2016-05-20 15:39:17 +02:00
|
|
|
add_index "administrateurs_gestionnaires", ["gestionnaire_id"], name: "index_administrateurs_gestionnaires_on_gestionnaire_id", using: :btree
|
|
|
|
|
2016-02-23 16:51:24 +01:00
|
|
|
create_table "administrations", force: :cascade do |t|
|
|
|
|
t.string "email", default: "", null: false
|
|
|
|
t.string "encrypted_password", default: "", null: false
|
|
|
|
t.string "reset_password_token"
|
|
|
|
t.datetime "reset_password_sent_at"
|
|
|
|
t.datetime "remember_created_at"
|
|
|
|
t.integer "sign_in_count", default: 0, null: false
|
|
|
|
t.datetime "current_sign_in_at"
|
|
|
|
t.datetime "last_sign_in_at"
|
|
|
|
t.inet "current_sign_in_ip"
|
|
|
|
t.inet "last_sign_in_ip"
|
|
|
|
t.datetime "created_at"
|
|
|
|
t.datetime "updated_at"
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index "administrations", ["email"], name: "index_administrations_on_email", unique: true, using: :btree
|
|
|
|
add_index "administrations", ["reset_password_token"], name: "index_administrations_on_reset_password_token", unique: true, using: :btree
|
|
|
|
|
2016-05-20 15:39:17 +02:00
|
|
|
create_table "assign_tos", id: false, force: :cascade do |t|
|
|
|
|
t.integer "gestionnaire_id"
|
|
|
|
t.integer "procedure_id"
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index "assign_tos", ["gestionnaire_id"], name: "index_assign_tos_on_gestionnaire_id", using: :btree
|
|
|
|
add_index "assign_tos", ["procedure_id"], name: "index_assign_tos_on_procedure_id", using: :btree
|
|
|
|
|
2016-01-15 15:28:56 +01:00
|
|
|
create_table "cadastres", force: :cascade do |t|
|
|
|
|
t.string "surface_intersection"
|
|
|
|
t.float "surface_parcelle"
|
|
|
|
t.string "numero"
|
|
|
|
t.integer "feuille"
|
|
|
|
t.string "section"
|
|
|
|
t.string "code_dep"
|
|
|
|
t.string "nom_com"
|
|
|
|
t.string "code_com"
|
|
|
|
t.string "code_arr"
|
|
|
|
t.text "geometry"
|
|
|
|
t.integer "dossier_id"
|
|
|
|
end
|
|
|
|
|
2015-08-18 13:52:00 +02:00
|
|
|
create_table "cerfas", force: :cascade do |t|
|
2016-03-14 17:30:22 +01:00
|
|
|
t.string "content"
|
|
|
|
t.integer "dossier_id"
|
|
|
|
t.datetime "created_at"
|
2016-03-17 17:33:38 +01:00
|
|
|
t.integer "user_id"
|
2016-05-13 16:08:51 +02:00
|
|
|
t.string "original_filename"
|
|
|
|
t.string "content_secure_token"
|
2015-08-18 13:52:00 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index "cerfas", ["dossier_id"], name: "index_cerfas_on_dossier_id", using: :btree
|
|
|
|
|
2015-11-03 10:48:40 +01:00
|
|
|
create_table "champs", force: :cascade do |t|
|
|
|
|
t.string "value"
|
2015-11-05 11:21:44 +01:00
|
|
|
t.integer "type_de_champ_id"
|
2015-11-03 10:48:40 +01:00
|
|
|
t.integer "dossier_id"
|
|
|
|
end
|
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
create_table "commentaires", force: :cascade do |t|
|
|
|
|
t.string "email"
|
2016-04-20 16:51:57 +02:00
|
|
|
t.datetime "created_at", null: false
|
2015-08-10 11:05:06 +02:00
|
|
|
t.string "body"
|
|
|
|
t.integer "dossier_id"
|
2016-04-20 16:51:57 +02:00
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.integer "piece_justificative_id"
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index "commentaires", ["dossier_id"], name: "index_commentaires_on_dossier_id", using: :btree
|
|
|
|
|
|
|
|
create_table "dossiers", force: :cascade do |t|
|
2015-09-22 11:24:03 +02:00
|
|
|
t.string "description"
|
|
|
|
t.boolean "autorisation_donnees"
|
|
|
|
t.string "nom_projet"
|
|
|
|
t.integer "procedure_id"
|
2016-01-20 15:48:46 +01:00
|
|
|
t.datetime "created_at"
|
|
|
|
t.datetime "updated_at"
|
2015-09-23 12:04:57 +02:00
|
|
|
t.string "state"
|
2015-09-23 12:16:21 +02:00
|
|
|
t.integer "user_id"
|
2015-11-16 11:23:29 +01:00
|
|
|
t.text "json_latlngs"
|
2015-11-27 13:56:54 +01:00
|
|
|
t.boolean "archived", default: false
|
2016-01-06 14:17:08 +01:00
|
|
|
t.boolean "mandataire_social", default: false
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
|
2015-09-21 17:59:03 +02:00
|
|
|
add_index "dossiers", ["procedure_id"], name: "index_dossiers_on_procedure_id", using: :btree
|
2015-09-23 12:16:21 +02:00
|
|
|
add_index "dossiers", ["user_id"], name: "index_dossiers_on_user_id", using: :btree
|
2015-08-13 15:55:19 +02:00
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
create_table "entreprises", force: :cascade do |t|
|
2016-02-04 11:03:17 +01:00
|
|
|
t.string "siren"
|
|
|
|
t.integer "capital_social"
|
|
|
|
t.string "numero_tva_intracommunautaire"
|
|
|
|
t.string "forme_juridique"
|
|
|
|
t.string "forme_juridique_code"
|
|
|
|
t.string "nom_commercial"
|
|
|
|
t.string "raison_sociale"
|
|
|
|
t.string "siret_siege_social"
|
|
|
|
t.string "code_effectif_entreprise"
|
|
|
|
t.datetime "date_creation"
|
|
|
|
t.string "nom"
|
|
|
|
t.string "prenom"
|
|
|
|
t.integer "dossier_id"
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
create_table "etablissements", force: :cascade do |t|
|
|
|
|
t.string "siret"
|
|
|
|
t.boolean "siege_social"
|
|
|
|
t.string "naf"
|
|
|
|
t.string "libelle_naf"
|
|
|
|
t.string "adresse"
|
|
|
|
t.string "numero_voie"
|
|
|
|
t.string "type_voie"
|
|
|
|
t.string "nom_voie"
|
|
|
|
t.string "complement_adresse"
|
|
|
|
t.string "code_postal"
|
|
|
|
t.string "localite"
|
|
|
|
t.string "code_insee_localite"
|
|
|
|
t.integer "dossier_id"
|
|
|
|
t.integer "entreprise_id"
|
|
|
|
end
|
|
|
|
|
2015-11-16 11:23:29 +01:00
|
|
|
create_table "exercices", force: :cascade do |t|
|
|
|
|
t.string "ca"
|
|
|
|
t.datetime "dateFinExercice"
|
2015-12-02 11:03:52 +01:00
|
|
|
t.integer "date_fin_exercice_timestamp"
|
2015-11-16 11:23:29 +01:00
|
|
|
t.integer "etablissement_id"
|
|
|
|
end
|
|
|
|
|
2016-01-21 17:06:09 +01:00
|
|
|
create_table "france_connect_informations", force: :cascade do |t|
|
|
|
|
t.string "gender"
|
|
|
|
t.string "given_name"
|
|
|
|
t.string "family_name"
|
|
|
|
t.date "birthdate"
|
|
|
|
t.string "birthplace"
|
|
|
|
t.string "france_connect_particulier_id"
|
|
|
|
t.integer "user_id"
|
|
|
|
t.string "email_france_connect"
|
|
|
|
end
|
|
|
|
|
2015-09-22 10:15:12 +02:00
|
|
|
create_table "gestionnaires", force: :cascade do |t|
|
|
|
|
t.string "email", default: "", null: false
|
|
|
|
t.string "encrypted_password", default: "", null: false
|
|
|
|
t.string "reset_password_token"
|
|
|
|
t.datetime "reset_password_sent_at"
|
|
|
|
t.datetime "remember_created_at"
|
|
|
|
t.integer "sign_in_count", default: 0, null: false
|
|
|
|
t.datetime "current_sign_in_at"
|
|
|
|
t.datetime "last_sign_in_at"
|
|
|
|
t.inet "current_sign_in_ip"
|
|
|
|
t.inet "last_sign_in_ip"
|
|
|
|
t.datetime "created_at"
|
|
|
|
t.datetime "updated_at"
|
2016-03-14 14:23:09 +01:00
|
|
|
t.integer "procedure_filter", default: [], array: true
|
2015-09-22 10:15:12 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index "gestionnaires", ["email"], name: "index_gestionnaires_on_email", unique: true, using: :btree
|
|
|
|
add_index "gestionnaires", ["reset_password_token"], name: "index_gestionnaires_on_reset_password_token", unique: true, using: :btree
|
|
|
|
|
2016-02-08 18:16:18 +01:00
|
|
|
create_table "invites", force: :cascade do |t|
|
|
|
|
t.string "email"
|
|
|
|
t.string "email_sender"
|
|
|
|
t.integer "dossier_id"
|
|
|
|
t.integer "user_id"
|
|
|
|
end
|
|
|
|
|
2015-12-07 11:29:34 +01:00
|
|
|
create_table "module_api_cartos", force: :cascade do |t|
|
|
|
|
t.integer "procedure_id"
|
2015-12-08 10:11:58 +01:00
|
|
|
t.boolean "use_api_carto", default: false
|
|
|
|
t.boolean "quartiers_prioritaires", default: false
|
|
|
|
t.boolean "cadastre", default: false
|
2015-12-07 11:29:34 +01:00
|
|
|
end
|
|
|
|
|
2015-12-08 10:11:58 +01:00
|
|
|
add_index "module_api_cartos", ["procedure_id"], name: "index_module_api_cartos_on_procedure_id", unique: true, using: :btree
|
|
|
|
|
2015-09-21 11:38:14 +02:00
|
|
|
create_table "pieces_justificatives", force: :cascade do |t|
|
2016-03-14 17:30:22 +01:00
|
|
|
t.string "content"
|
|
|
|
t.integer "dossier_id"
|
|
|
|
t.integer "type_de_piece_justificative_id"
|
|
|
|
t.datetime "created_at"
|
2016-03-17 17:33:38 +01:00
|
|
|
t.integer "user_id"
|
2016-05-13 16:08:51 +02:00
|
|
|
t.string "original_filename"
|
|
|
|
t.string "content_secure_token"
|
2015-08-13 15:55:19 +02:00
|
|
|
end
|
|
|
|
|
2015-10-07 12:03:56 +02:00
|
|
|
add_index "pieces_justificatives", ["type_de_piece_justificative_id"], name: "index_pieces_justificatives_on_type_de_piece_justificative_id", using: :btree
|
2015-09-21 11:38:14 +02:00
|
|
|
|
|
|
|
create_table "procedures", force: :cascade do |t|
|
|
|
|
t.string "libelle"
|
|
|
|
t.string "description"
|
|
|
|
t.string "organisation"
|
|
|
|
t.string "direction"
|
|
|
|
t.string "lien_demarche"
|
2015-11-10 10:23:15 +01:00
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2015-09-21 11:38:14 +02:00
|
|
|
t.boolean "test"
|
2015-11-10 10:23:15 +01:00
|
|
|
t.integer "administrateur_id"
|
2015-11-26 18:41:41 +01:00
|
|
|
t.boolean "archived", default: false
|
2015-12-10 16:09:21 +01:00
|
|
|
t.boolean "euro_flag", default: false
|
2015-12-10 17:13:39 +01:00
|
|
|
t.string "logo"
|
2016-02-02 18:37:38 +01:00
|
|
|
t.boolean "cerfa_flag", default: false
|
2016-05-13 16:08:51 +02:00
|
|
|
t.string "logo_secure_token"
|
2015-09-21 11:38:14 +02:00
|
|
|
end
|
2015-08-13 15:55:19 +02:00
|
|
|
|
2015-11-24 10:02:55 +01:00
|
|
|
create_table "quartier_prioritaires", force: :cascade do |t|
|
|
|
|
t.string "code"
|
|
|
|
t.string "nom"
|
|
|
|
t.string "commune"
|
|
|
|
t.text "geometry"
|
|
|
|
t.integer "dossier_id"
|
|
|
|
end
|
|
|
|
|
2015-12-11 11:05:38 +01:00
|
|
|
create_table "rna_informations", force: :cascade do |t|
|
|
|
|
t.string "association_id"
|
|
|
|
t.string "titre"
|
|
|
|
t.text "objet"
|
|
|
|
t.date "date_creation"
|
|
|
|
t.date "date_declaration"
|
|
|
|
t.date "date_publication"
|
|
|
|
t.integer "entreprise_id"
|
|
|
|
end
|
|
|
|
|
2015-11-05 11:21:44 +01:00
|
|
|
create_table "types_de_champ", force: :cascade do |t|
|
2015-10-26 17:35:02 +01:00
|
|
|
t.string "libelle"
|
2015-11-17 10:23:05 +01:00
|
|
|
t.string "type_champ"
|
2015-10-26 17:35:02 +01:00
|
|
|
t.integer "order_place"
|
|
|
|
t.integer "procedure_id"
|
2015-10-27 16:15:25 +01:00
|
|
|
t.text "description"
|
2016-03-15 11:23:25 +01:00
|
|
|
t.boolean "mandatory", default: false
|
2015-10-26 17:35:02 +01:00
|
|
|
end
|
|
|
|
|
2015-09-21 11:38:14 +02:00
|
|
|
create_table "types_de_piece_justificative", force: :cascade do |t|
|
2015-08-10 11:05:06 +02:00
|
|
|
t.string "libelle"
|
|
|
|
t.string "description"
|
2015-09-22 13:11:56 +02:00
|
|
|
t.boolean "api_entreprise", default: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2015-09-21 11:38:14 +02:00
|
|
|
t.integer "procedure_id"
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
|
2015-09-23 10:02:01 +02:00
|
|
|
create_table "users", force: :cascade do |t|
|
2016-01-21 17:06:09 +01:00
|
|
|
t.string "email", default: "", null: false
|
|
|
|
t.string "encrypted_password", default: "", null: false
|
2015-09-23 10:02:01 +02:00
|
|
|
t.string "reset_password_token"
|
|
|
|
t.datetime "reset_password_sent_at"
|
|
|
|
t.datetime "remember_created_at"
|
2016-01-21 17:06:09 +01:00
|
|
|
t.integer "sign_in_count", default: 0, null: false
|
2015-09-23 10:02:01 +02:00
|
|
|
t.datetime "current_sign_in_at"
|
|
|
|
t.datetime "last_sign_in_at"
|
|
|
|
t.inet "current_sign_in_ip"
|
|
|
|
t.inet "last_sign_in_ip"
|
|
|
|
t.datetime "created_at"
|
|
|
|
t.datetime "updated_at"
|
2015-10-07 10:29:44 +02:00
|
|
|
t.string "siret"
|
2016-01-21 17:06:09 +01:00
|
|
|
t.string "loged_in_with_france_connect", default: "false"
|
2015-09-23 10:02:01 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
|
|
|
|
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
|
|
|
|
|
2015-08-18 13:52:00 +02:00
|
|
|
add_foreign_key "cerfas", "dossiers"
|
2015-08-10 11:05:06 +02:00
|
|
|
add_foreign_key "commentaires", "dossiers"
|
2015-09-23 12:16:21 +02:00
|
|
|
add_foreign_key "dossiers", "users"
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|