mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
Aliased mysql
to mysql2
in schema client
refs https://github.com/TryGhost/Toolbox/issues/174 - this just uses the same SQL queries for certain queries when using the `mysql2` library as when using the `mysql` one - we can remove the `mysql` line when we fully switch to `mysql2`
This commit is contained in:
parent
47260f405a
commit
2a0cc9e8d4
@ -3,5 +3,6 @@ const mysql = require('./mysql');
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
sqlite3: sqlite3,
|
sqlite3: sqlite3,
|
||||||
mysql: mysql
|
mysql: mysql, //TODO: remove this once we switch to `mysql2`
|
||||||
|
mysql2: mysql
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user