Commit 058ad4d0 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Ajout colonne etape_id dans service, pour pouvoir enregistrer l'étape si on est sur un ep mutualisé

parent fff421f1
Loading
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
<?php

//@formatter:off

return [
    'name'    => 'SERVICE_ETAPE_FK',
    'unique'  => FALSE,
    'table'   => 'SERVICE',
    'columns' => [
        'ETAPE_ID',
    ],
];

//@formatter:on
+16 −0
Original line number Diff line number Diff line
<?php

//@formatter:off

return [
    'name'        => 'SERVICE_ETAPE_FK',
    'table'       => 'SERVICE',
    'rtable'      => 'ETAPE',
    'delete_rule' => NULL,
    'index'       => NULL,
    'columns'     => [
        'ETAPE_ID' => 'ID',
    ],
];

//@formatter:on
+12 −0
Original line number Diff line number Diff line
@@ -45,6 +45,18 @@ return [
            'position'    => 4,
            'commentaire' => NULL,
        ],
        'ETAPE_ID'               => [
            'name'        => 'ETAPE_ID',
            'type'        => 'int',
            'bdd-type'    => 'NUMBER',
            'length'      => 0,
            'scale'       => NULL,
            'precision'   => NULL,
            'nullable'    => TRUE,
            'default'     => NULL,
            'position'    => 14,
            'commentaire' => NULL,
        ],
        'HISTO_CREATEUR_ID'      => [
            'name'        => 'HISTO_CREATEUR_ID',
            'type'        => 'int',
+1 −0
Original line number Diff line number Diff line
@@ -1240,6 +1240,7 @@ return [
        'SOURCE_ID',
        'SOURCE_CODE',
        'DESCRIPTION',
        'ETAPE_ID',
    ],
    'SERVICE_REFERENTIEL'                 => [
        'ID',