mirror of
https://github.com/knex/knex.git
synced 2025-12-15 09:07:41 +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;
|
|
}; |