Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 613 Bytes

default-types.md

File metadata and controls

12 lines (9 loc) · 613 Bytes

Default Types

PHP type Database type
integer or int INT, for primary key INT UNSIGNED
boolean or bool TINYINT(1) UNSIGNED
float or double DOUBLE
string TEXT
DateTime or DateTimeInterface DATETIME

You can define custom types.