feat(migrations): support boolean type

This commit is contained in:
Matthieu Bessat 2025-06-23 16:54:37 +02:00
parent 21c1f2e069
commit 64e1aa33a6

View file

@ -16,6 +16,7 @@ impl Field {
"i64" => Some("INTEGER".into()),
"f64" => Some("REAL".into()),
"f32" => Some("REAL".into()),
"bool" => Some("TINYINT".into()),
"String" => Some("TEXT".into()),
"DateTime" => Some("DATETIME".into()),
"Json" => Some("TEXT".into()),