You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
348 B
JavaScript

'use strict';
module.exports = function attemptNotNullConstraintViolation(knex) {
return knex("invalid_type").insert([{
name: "Joe",
age: 29,
active: true
}, {
name: "Jane",
age: 42,
active: true
}, {
name: true,
age: 24,
active: false
}]).returning("*");
};