Commit 9d6ad71a authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Suppression de la table TBL_DEMS, devenue inutile

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

//@formatter:off

return [
    'name'    => 'TBL_DEMS_TBL_FK',
    'unique'  => FALSE,
    'table'   => 'TBL_DEMS',
    'columns' => [
        'TBL_NAME',
    ],
];

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

//@formatter:off

return [
    'name'        => 'TBL_DEMS_TBL_FK',
    'table'       => 'TBL_DEMS',
    'rtable'      => 'TBL',
    'delete_rule' => 'CASCADE',
    'index'       => NULL,
    'columns'     => [
        'TBL_NAME' => 'TBL_NAME',
    ],
];

//@formatter:on
+0 −1
Original line number Diff line number Diff line
@@ -94,7 +94,6 @@ return [
    'TBL_CHARGENS_SEUILS_DEF_ID_SEQ',
    'TBL_CLOTURE_REALISE_ID_SEQ',
    'TBL_CONTRAT_ID_SEQ',
    'TBL_DEMS_ID_SEQ',
    'TBL_DMEP_LIQUIDATION_ID_SEQ',
    'TBL_DOSSIER_ID_SEQ',
    'TBL_LIEN_ID_SEQ',

data/ddl/table/TBL_DEMS.php

deleted100644 → 0
+0 −63
Original line number Diff line number Diff line
<?php

//@formatter:off

return [
    'name'        => 'TBL_DEMS',
    'temporary'   => FALSE,
    'logging'     => FALSE,
    'commentaire' => NULL,
    'sequence'    => 'TBL_DEMS_ID_SEQ',
    'columns'     => [
        'ID'       => [
            'name'        => 'ID',
            'type'        => 'int',
            'bdd-type'    => 'NUMBER',
            'length'      => 0,
            'scale'       => '0',
            'precision'   => NULL,
            'nullable'    => FALSE,
            'default'     => NULL,
            'position'    => 1,
            'commentaire' => NULL,
        ],
        'PARAM'    => [
            'name'        => 'PARAM',
            'type'        => 'string',
            'bdd-type'    => 'VARCHAR2',
            'length'      => 30,
            'scale'       => NULL,
            'precision'   => NULL,
            'nullable'    => TRUE,
            'default'     => NULL,
            'position'    => 3,
            'commentaire' => NULL,
        ],
        'TBL_NAME' => [
            'name'        => 'TBL_NAME',
            'type'        => 'string',
            'bdd-type'    => 'VARCHAR2',
            'length'      => 30,
            'scale'       => NULL,
            'precision'   => NULL,
            'nullable'    => FALSE,
            'default'     => NULL,
            'position'    => 2,
            'commentaire' => NULL,
        ],
        'VALUE'    => [
            'name'        => 'VALUE',
            'type'        => 'string',
            'bdd-type'    => 'VARCHAR2',
            'length'      => 80,
            'scale'       => NULL,
            'precision'   => NULL,
            'nullable'    => TRUE,
            'default'     => NULL,
            'position'    => 4,
            'commentaire' => NULL,
        ],
    ],
];

//@formatter:on
+0 −6
Original line number Diff line number Diff line
@@ -1360,12 +1360,6 @@ return [
        'EDITE',
        'SIGNE',
    ],
    'TBL_DEMS'                       => [
        'ID',
        'TBL_NAME',
        'PARAM',
        'VALUE',
    ],
    'TBL_DMEP_LIQUIDATION'           => [
        'ID',
        'ANNEE_ID',
Loading