laravel-test-factory-helper icon indicating copy to clipboard operation
laravel-test-factory-helper copied to clipboard

not support tinyint

Open jackwangwj opened this issue 8 years ago • 2 comments

'level' => $faker->boolean, but in mysql level =》tinyint

jackwangwj avatar Feb 08 '17 09:02 jackwangwj

Hi Jack;

BOOL and BOOLEAN are synonyms of TINYINT(1). Zero is false, anything else is true. More information can be found here:

https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html

#close

jrmadsen67 avatar Dec 24 '18 02:12 jrmadsen67

The converse is not true. BOOL and BOOLEAN are synonyms for TINYINT(1), but TINYINT is not a synonym for BOOL and BOOLEAN.

cazzerson avatar Mar 11 '19 20:03 cazzerson