mirror of
https://github.com/knex/knex.git
synced 2025-07-03 23:19:26 +00:00
14 lines
294 B
JavaScript
14 lines
294 B
JavaScript
module.exports = function(client) {
|
|
|
|
var inherits = require('inherits');
|
|
var Transaction = require('../../transaction');
|
|
|
|
function Transaction_PG() {
|
|
this.client = client;
|
|
Transaction.apply(this, arguments);
|
|
}
|
|
inherits(Transaction_PG, Transaction);
|
|
|
|
client.Transaction = Transaction_PG;
|
|
|
|
}; |