Skip to content
Snippets Groups Projects
Commit 453a92d1 authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Changement de la gestion des désistements

parent d10cea53
No related branches found
No related tags found
No related merge requests found
Showing
with 54 additions and 18 deletions
......@@ -9,7 +9,7 @@ return [
'rtable' => 'fichier_fichier',
'update_rule' => 'NO ACTION',
'delete_rule' => 'CASCADE',
'index' => 'fichier_fichier_pk',
'index' => 'fichier_fichier_id_uindex',
'columns' => [
'fichier' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'formation_element',
'update_rule' => 'NO ACTION',
'delete_rule' => 'CASCADE',
'index' => 'formation_element_pk',
'index' => 'formation_element_id_uindex',
'columns' => [
'formation_element_id' => 'id',
],
......
......@@ -4,14 +4,14 @@
return [
'schema' => 'public',
'name' => 'inscription_etat_inscription_id_fk',
'table' => 'formation_inscription_etat',
'rtable' => 'formation_inscription',
'name' => 'agent_hierarchie_validateur_agent_c_individu_fk',
'table' => 'agent_hierarchie_validateur',
'rtable' => 'agent',
'update_rule' => 'NO ACTION',
'delete_rule' => 'CASCADE',
'index' => 'formation_inscription_pk',
'index' => 'agent_pk',
'columns' => [
'inscription_id' => 'id',
'validateur_id' => 'c_individu',
],
];
......
<?php
//@formatter:off
return [
'schema' => 'public',
'name' => 'agent_hierarchie_validateur_agent_c_individu_fk_2',
'table' => 'agent_hierarchie_validateur',
'rtable' => 'agent',
'update_rule' => 'NO ACTION',
'delete_rule' => 'CASCADE',
'index' => 'agent_pk',
'columns' => [
'agent_id' => 'c_individu',
],
];
//@formatter:on
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_createur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_modificateur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_destructeur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'SET NULL',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'utilisateur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_validation_instance',
'update_rule' => 'NO ACTION',
'delete_rule' => 'CASCADE',
'index' => 'unicaen_validation_instance_pk',
'index' => 'unicaen_validation_instance_id_uindex',
'columns' => [
'validation_instance_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'carriere_niveau_enveloppe',
'update_rule' => 'NO ACTION',
'delete_rule' => 'SET NULL',
'index' => 'niveau_enveloppe_pk',
'index' => 'niveau_enveloppe_id_uindex',
'columns' => [
'niveaux_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_createur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_modificateur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_destructeur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_createur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_modificateur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_destructeur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_createur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_modificateur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_destructeur_id' => 'id',
],
......
......@@ -9,7 +9,7 @@ return [
'rtable' => 'unicaen_utilisateur_user',
'update_rule' => 'NO ACTION',
'delete_rule' => 'NO ACTION',
'index' => 'user_pkey',
'index' => 'unicaen_utilisateur_user_pkey',
'columns' => [
'histo_createur_id' => 'id',
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment