Skip to content

Commit

Permalink
feat(boolean columns): database_config: add BOOL to ValueType
Browse files Browse the repository at this point in the history
  • Loading branch information
pflanze committed Apr 11, 2024
1 parent af44f1a commit 0b47b82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/silo/config/database_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@

namespace silo::config {

enum class ValueType { STRING, PANGOLINEAGE, DATE, INT, FLOAT, NUC_INSERTION, AA_INSERTION };
enum class ValueType { STRING, PANGOLINEAGE, DATE, BOOL, INT, FLOAT, NUC_INSERTION, AA_INSERTION };
enum class ColumnType {
STRING,
INDEXED_STRING,
INDEXED_PANGOLINEAGE,
DATE,
BOOL,
INT,
FLOAT,
NUC_INSERTION,
Expand Down

0 comments on commit 0b47b82

Please sign in to comment.