RunKit + npm: knex

node v8.17.0
endpointsharetweet
require('sqlite3'); const Knex = require('knex'); const knexSqlite = Knex({ client: 'sqlite', connection: ':memory:' }); knexSqlite.schema.withSchema('lulz').createTable('table', t => { t.increments('id'); }).toSQL();
Created from: https://npm.runkit.com/knex
Loading…