Fixed insert

This commit is contained in:
2024-12-22 15:28:37 -05:00
parent 4c5300fa59
commit bd132d0c6b
7 changed files with 53 additions and 61 deletions

View File

@@ -50,6 +50,8 @@ impl InsertBuilder {
Value::OptionalBool(n) => query = query.bind(n),
Value::Text(n) => query = query.bind(n),
Value::OptionalText(n) => query = query.bind(n),
Value::DateTime(n) => query = query.bind(n),
Value::OptionalDateTime(n) => query = query.bind(n),
}
}