setSchema([ 'id' => ['type' => 'integer', 'null' => '', 'default' => '', 'length' => '8'], 'name' => ['type' => 'string', 'null' => '', 'default' => '', 'length' => '255'], 'email' => ['type' => 'string', 'null' => '', 'default' => '', 'length' => '255'], 'balance' => ['type' => 'float', 'null' => false, 'length' => 5, 'precision' => 2], 'cost_decimal' => ['type' => 'decimal', 'null' => false, 'length' => 6, 'precision' => 3], 'null_decimal' => ['type' => 'decimal', 'null' => false, 'length' => null, 'precision' => null], 'ratio' => ['type' => 'decimal', 'null' => false, 'length' => 10, 'precision' => 6], 'population' => ['type' => 'decimal', 'null' => false, 'length' => 15, 'precision' => 0], 'created' => ['type' => 'date', 'null' => '1', 'default' => '', 'length' => ''], 'updated' => ['type' => 'datetime', 'null' => '1', 'default' => '', 'length' => null], '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]], ]); } }