Skip to content
Snippets Groups Projects
Commit dfd61602 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Ajout de la colonne ogligatoire pour les champs autres

parent 45bfe912
No related branches found
No related tags found
1 merge request!55Ll bug report services
...@@ -69,6 +69,18 @@ return [ ...@@ -69,6 +69,18 @@ return [
'position' => 5, 'position' => 5,
'commentaire' => NULL, 'commentaire' => NULL,
], ],
'OBLIGATOIRE' => [
'name' => 'OBLIGATOIRE',
'type' => 'bool',
'bdd-type' => 'NUMBER',
'length' => 0,
'scale' => '0',
'precision' => 1,
'nullable' => FALSE,
'default' => '1',
'position' => 6,
'commentaire' => NULL,
],
], ],
]; ];
......
...@@ -99,11 +99,11 @@ return [ ...@@ -99,11 +99,11 @@ return [
], ],
'DOSSIER_CHAMP_AUTRE' => [ 'DOSSIER_CHAMP_AUTRE' => [
['ID' => 1, 'DOSSIER_CHAMP_AUTRE_TYPE_ID' => 1], ['ID' => 1, 'DOSSIER_CHAMP_AUTRE_TYPE_ID' => 1, 'OBLIGATOIRE' => true],
['ID' => 2, 'DOSSIER_CHAMP_AUTRE_TYPE_ID' => 1], ['ID' => 2, 'DOSSIER_CHAMP_AUTRE_TYPE_ID' => 1, 'OBLIGATOIRE' => true],
['ID' => 3, 'DOSSIER_CHAMP_AUTRE_TYPE_ID' => 1], ['ID' => 3, 'DOSSIER_CHAMP_AUTRE_TYPE_ID' => 1, 'OBLIGATOIRE' => true],
['ID' => 4, 'DOSSIER_CHAMP_AUTRE_TYPE_ID' => 1], ['ID' => 4, 'DOSSIER_CHAMP_AUTRE_TYPE_ID' => 1, 'OBLIGATOIRE' => true],
['ID' => 5, 'DOSSIER_CHAMP_AUTRE_TYPE_ID' => 1], ['ID' => 5, 'DOSSIER_CHAMP_AUTRE_TYPE_ID' => 1, 'OBLIGATOIRE' => true],
], ],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment