diff options
author | Adam <Adam@anope.org> | 2016-11-09 18:35:15 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-11-09 18:35:15 -0500 |
commit | be17c8118762c7c928239a026359e4fa0fd36f00 (patch) | |
tree | 41d21cac0d392d82541227f470ceaf67d1d7e4d4 /modules/database/sql.cpp | |
parent | 32b311b183443e11d26f13cd425e12406ffbfa76 (diff) |
Change default database to sqlite, begin 2.0 db_flatfile support
Diffstat (limited to 'modules/database/sql.cpp')
-rw-r--r-- | modules/database/sql.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/database/sql.cpp b/modules/database/sql.cpp index 50447c005..e1b766b57 100644 --- a/modules/database/sql.cpp +++ b/modules/database/sql.cpp @@ -99,7 +99,7 @@ class DBSQL : public Module, public Pipe { Configuration::Block *block = conf->GetModule(this); this->SQL = ServiceReference<Provider>(block->Get<Anope::string>("engine")); - this->prefix = block->Get<Anope::string>("prefix", "anope_db_"); + this->prefix = block->Get<Anope::string>("prefix", "anope_"); inited = false; } |