mirror of
https://github.com/knex/knex.git
synced 2025-07-24 17:31:01 +00:00
12 lines
323 B
JavaScript
12 lines
323 B
JavaScript
![]() |
module.exports = function(client) {
|
||
|
var inherits = require('inherits');
|
||
|
var Transaction = require('../../transaction');
|
||
|
|
||
|
function Transaction_SQLite3() {
|
||
|
this.client = client;
|
||
|
Transaction.apply(this, arguments);
|
||
|
}
|
||
|
inherits(Transaction_SQLite3, Transaction);
|
||
|
|
||
|
client.Transaction = Transaction_SQLite3;
|
||
|
};
|