1
0
mirror of synced 2024-12-15 15:46:02 +03:00
doctrine2/tests/Doctrine/Tests/ORM/Tools/SchemaTool/DbFixture/DecimalModel.php

42 lines
828 B
PHP

<?php
return array (
'decimal_model' =>
array (
0 =>
array (
'name' => 'id',
'values' =>
array (
),
'primary' => true,
'unique' => false,
'default' => NULL,
'notnull' => true,
'autoincrement' => true,
'type' =>
Doctrine\DBAL\Types\Type::getType(strtolower("Integer")),
'length' => NULL,
'unsigned' => false,
'fixed' => false,
),
1 =>
array (
'name' => 'decimal',
'values' =>
array (
),
'primary' => false,
'unique' => false,
'default' => NULL,
'notnull' => true,
'autoincrement' => false,
'type' =>
Doctrine\DBAL\Types\Type::getType(strtolower("Decimal")),
'length' => 5,
'unsigned' => false,
'fixed' => false,
),
),
);
?>