summaryrefslogtreecommitdiff
path: root/src/database
diff options
context:
space:
mode:
Diffstat (limited to 'src/database')
-rw-r--r--src/database/database.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/database/database.hpp b/src/database/database.hpp
index a0611c1..3a99867 100644
--- a/src/database/database.hpp
+++ b/src/database/database.hpp
@@ -48,11 +48,11 @@ class Database
struct Pass: Column<std::string> { static constexpr auto name = "pass_";
static constexpr auto options = ""; };
- struct Ports: Column<std::string> { static constexpr auto name = "tlsPorts_";
+ struct Ports: Column<std::string> { static constexpr auto name = "ports_";
static constexpr auto options = "";
- Ports(): Column<std::string>("6667") {}};
+ Ports(): Column<std::string>("6667") {} };
- struct TlsPorts: Column<std::string> { static constexpr auto name = "ports_";
+ struct TlsPorts: Column<std::string> { static constexpr auto name = "tlsPorts_";
static constexpr auto options = "";
TlsPorts(): Column<std::string>("6697;6670") {} };