Commit 3cf36952 authored by Antony Le Courtes's avatar Antony Le Courtes
Browse files

Merge remote-tracking branch 'origin/b24' into b24

parents 5fe13c2f 623a61ad
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
        "unicaen/siham"                    : "6.2.0",
        "unicaen/mail"                     : "7.1.2",
        "unicaen/vue"                      : "6.3.3",
        "unicaen/bddadmin"                 : "1.4.3",
        "unicaen/bddadmin"                 : "1.5.0",
        "unicaen/signature"                : "1.0.6",
        "connecteur-ose/actul"             : "dev-master",
        "connecteur-ose/pegase"            : "dev-master"
+4 −4
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
        "This file is @generated automatically"
    ],
    "content-hash": "61916ac2fc523c5e8fa641b0e7c9745a",
    "content-hash": "93e1e2e109a7688bb9f6fd199f7aa42a",
    "packages": [
        {
            "name": "apereo/phpcas",
@@ -7541,11 +7541,11 @@
        },
        {
            "name": "unicaen/bddadmin",
            "version": "1.4.3",
            "version": "1.5.0",
            "source": {
                "type": "git",
                "url": "https://git.unicaen.fr/lib/unicaen/bddadmin.git",
                "reference": "4903b11485679f5a7f2fada287efb1c5762879cf"
                "reference": "26404d23f8f99dca7ef74437a2e0821812be1c72"
            },
            "require": {
                "php": ">=8.2"
@@ -7558,7 +7558,7 @@
                }
            },
            "description": "Module pour administrer des bases de données Postgresql et Oracle",
            "time": "2025-06-24T08:15:08+00:00"
            "time": "2025-06-26T11:31:19+00:00"
        },
        {
            "name": "unicaen/bjy-authorize",
+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',
Loading