GS
Size: a a a
GS
S
GS
S
knex = require('knex')({
client: 'sqlite3',
connection: ':memory:',
useNullAsDefault: true
});GS
knex = require('knex')({
client: 'sqlite3',
connection: ':memory:',
useNullAsDefault: true
});GS
S
S
S
const run = async () => {
knex = require('knex')({
client: 'sqlite3',
connection: ':memory:',
useNullAsDefault: true
});
await knex.schema.createTable('users', function (table) {
table.increments();
table.string('name');
table.timestamps();
})
await knex('users').insert({name: 'Sviatoslav'});
const result = await knex('users');
console.log({ result });
}
run();GS
KK

KK

KK

S
S
S
GS
GS
S
GS