Commit 2490f2e7 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Nouvelle DDL

parent 0883cf22
Loading
Loading
Loading
Loading

data/ddl.php

deleted100644 → 0
+0 −54213

File deleted.

Preview size limit exceeded, changes collapsed.

+14 −0
Original line number Diff line number Diff line
<?php

//@formatter:off

return [
    'name'    => 'ADRESSE_INTERVENANT_HCFK_IDX',
    'unique'  => FALSE,
    'table'   => 'ADRESSE_INTERVENANT',
    'columns' => [
        'HISTO_CREATEUR_ID',
    ],
];

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

//@formatter:off

return [
    'name'    => 'ADRESSE_INTERVENANT_HDFK_IDX',
    'unique'  => FALSE,
    'table'   => 'ADRESSE_INTERVENANT',
    'columns' => [
        'HISTO_DESTRUCTEUR_ID',
    ],
];

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

//@formatter:off

return [
    'name'    => 'ADRESSE_INTERVENANT_HMFK_IDX',
    'unique'  => FALSE,
    'table'   => 'ADRESSE_INTERVENANT',
    'columns' => [
        'HISTO_MODIFICATEUR_ID',
    ],
];

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

//@formatter:off

return [
    'name'    => 'ADRESSE_INTERVENANT_PK',
    'unique'  => TRUE,
    'table'   => 'ADRESSE_INTERVENANT',
    'columns' => [
        'ID',
    ],
];

//@formatter:on
Loading