mpociot / laravel-test-factory-helper

Generate Laravel test factories from your existing models
936 stars 87 forks source link

not support tinyint #16

Open jackwangwj opened 7 years ago

jackwangwj commented 7 years ago

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

jrmadsen67 commented 5 years ago

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

cazzerson commented 5 years ago

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