Skip to content
Snippets Groups Projects
Commit 2f93633a authored by Cam Saül's avatar Cam Saül
Browse files

BOOLEAN is a synonym of TINYINT(1)

parent 2b3b65a9
Branches
Tags
No related merge requests found
......@@ -13,7 +13,7 @@
(def ^:private ^:const field-base-type->sql-type
{:BigIntegerField "BIGINT"
:BooleanField "BIT" ; There's no boolean type in MySQL (!)
:BooleanField "BOOLEAN" ; Synonym of TINYINT(1)
:CharField "VARCHAR(254)"
:DateField "DATE"
:DateTimeField "TIMESTAMP"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment