Fix some internal function names

master
Sven Slootweg 7 years ago
parent 082b49b932
commit cf7e5f6180

@ -1,6 +1,6 @@
'use strict';
module.exports = function attemptNotNullConstraintViolation(knex) {
module.exports = function attemptInvalidTypeBooleanInverse(knex) {
return knex("invalid_type").insert([{
name: "Joe",
age: 29,

@ -1,6 +1,6 @@
'use strict';
module.exports = function attemptNotNullConstraintViolation(knex) {
module.exports = function attemptInvalidTypeBoolean(knex) {
return knex("invalid_type").insert([{
name: "Joe",
age: 29,

@ -1,6 +1,6 @@
'use strict';
module.exports = function attemptNotNullConstraintViolation(knex) {
module.exports = function attemptInvalidTypeInteger(knex) {
return knex("invalid_type").insert([{
name: "Joe",
age: 29,

@ -1,6 +1,6 @@
'use strict';
module.exports = function attemptInvalidColumn(knex) {
module.exports = function attemptUndefinedColumn(knex) {
return knex("invalid_type").insert([{
name: "Joe",
age: 29,

Loading…
Cancel
Save