summaryrefslogtreecommitdiff
path: root/src/database/type_to_sql.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/database/type_to_sql.hpp')
-rw-r--r--src/database/type_to_sql.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/database/type_to_sql.hpp b/src/database/type_to_sql.hpp
index 1942268..ba806ab 100644
--- a/src/database/type_to_sql.hpp
+++ b/src/database/type_to_sql.hpp
@@ -1,5 +1,7 @@
#pragma once
+#include <utils/optional_bool.hpp>
+
#include <string>
template <typename T>
@@ -10,4 +12,5 @@ template <> const std::string TypeToSQLType<std::size_t>::type;
template <> const std::string TypeToSQLType<long>::type;
template <> const std::string TypeToSQLType<long long>::type;
template <> const std::string TypeToSQLType<bool>::type;
-template <> const std::string TypeToSQLType<std::string>::type; \ No newline at end of file
+template <> const std::string TypeToSQLType<std::string>::type;
+template <> const std::string TypeToSQLType<OptionalBool>::type; \ No newline at end of file