'SurCategories']; /** * Fields * * @var array */ /* // @codingStandardsIgnoreStart public $fields = [ 'id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null], 'nom' => ['type' => 'string', 'length' => 45, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'fixed' => null], '_constraints' => [ 'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []], 'nom_UNIQUE' => ['type' => 'unique', 'columns' => ['nom'], 'length' => []], ], '_options' => [ 'engine' => 'InnoDB', 'collation' => 'latin1_swedish_ci' ], ]; // @codingStandardsIgnoreEnd */ /** * Records * * @var array */ public $records = [ [ //'id' => 1, 'nom' => 'Electronique' ], [ //'id' => 2, 'nom' => 'Optique' ], // Celui-ci n'a pas de materiel associƩ, on pourra donc le supprimer !!! [ //'id' => 3, 'nom' => 'Bidon' ], ]; }