diff options
author | louiz’ <louiz@louiz.org> | 2018-03-19 20:08:35 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2018-03-19 20:15:44 +0100 |
commit | 619c991a691a455efee2baa4e1fe96e64d27ff64 (patch) | |
tree | 57caded9a8d529e8793e920fc1df96d8903c2280 /src/database | |
parent | d7427fc9ca4c06fda458e4951559f57163d90b94 (diff) | |
download | biboumi-619c991a691a455efee2baa4e1fe96e64d27ff64.tar.gz biboumi-619c991a691a455efee2baa4e1fe96e64d27ff64.tar.bz2 biboumi-619c991a691a455efee2baa4e1fe96e64d27ff64.tar.xz biboumi-619c991a691a455efee2baa4e1fe96e64d27ff64.zip |
Add a nick field in the IRC server configuration form
fix #3317
Diffstat (limited to 'src/database')
-rw-r--r-- | src/database/database.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/database.hpp b/src/database/database.hpp index 5dde447..d986ecc 100644 --- a/src/database/database.hpp +++ b/src/database/database.hpp @@ -92,7 +92,7 @@ class Database using GlobalOptionsTable = Table<Id, Owner, MaxHistoryLength, RecordHistory, GlobalPersistent>; using GlobalOptions = GlobalOptionsTable::RowType; - using IrcServerOptionsTable = Table<Id, Owner, Server, Pass, TlsPorts, Ports, Username, Realname, VerifyCert, TrustedFingerprint, EncodingOut, EncodingIn, MaxHistoryLength, Address>; + using IrcServerOptionsTable = Table<Id, Owner, Server, Pass, TlsPorts, Ports, Username, Realname, VerifyCert, TrustedFingerprint, EncodingOut, EncodingIn, MaxHistoryLength, Address, Nick>; using IrcServerOptions = IrcServerOptionsTable::RowType; using IrcChannelOptionsTable = Table<Id, Owner, Server, Channel, EncodingOut, EncodingIn, MaxHistoryLength, Persistent, RecordHistoryOptional>; |