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.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/database/type_to_sql.hpp b/src/database/type_to_sql.hpp
index 5ae03ad..1942268 100644
--- a/src/database/type_to_sql.hpp
+++ b/src/database/type_to_sql.hpp
@@ -4,3 +4,10 @@
template <typename T>
struct TypeToSQLType { static const std::string type; };
+
+template <> const std::string TypeToSQLType<int>::type;
+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