Skip to content
#

knex

Here are 839 public repositories matching this topic...

yodhcn
yodhcn commented Feb 13, 2021

Feature request

Is there any chance to have a Knex native way to set "DEFERRABLE INITIALLY DEFERRED" on a table with foreign key constraints ?

knex.schema.table('users', function (table) {
  table.integer('user_id').unsigned()
  table.foreign('user_id').references('Items.user_id_in_items').deferred().
})
MattIPv4
MattIPv4 commented Feb 16, 2020

Bug Report

Description

When editing the id of an existing list within the app, it will generate a new message in the lists Discord channel instead of updating the old one. This results in two entries being in the lists_messages table, one with the old list id / message id and another with the new list id / message id.

Steps to reproduce

  • Add a list to the app
  • Ensure the a

Improve this page

Add a description, image, and links to the knex topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the knex topic, visit your repo's landing page and select "manage topics."

Learn more