Ioann Pilipchuk

Results 2 comments of Ioann Pilipchuk

I have the same problem when I use knexSnakeCaseMappers with sqlite3 and better-sqlite3 and this error throw on setting non increment primary key like: ``` table.string('id').notNullable(); table.string('name').notNullable(); table.integer('channel_id'); table.integer('project_id').notNullable(); table.specificType('status',...

@DomenicoCasillo In my case, the solution was to set the primary key constraint name like `table.primary(['id', 'channel_id'], 'accounts_pkey'); `