I tried to use every single logic in my mind to resolve this problem, but this is the only solution that it worked.
JavaScript
x
15
15
1
knex.schema.createTable('documents', (table) => {
2
table.integer('id').unsigned().notNullable().unique()
3
table.string('path')
4
table.enum('type', ['CPF', 'RG'])
5
table.integer('user_id').unsigned().notNullable()
6
table.foreign('user_id').references('id').inTable('users')
7
table.primary(['id', 'user_id'])
8
9
table.timestamps(true, true)
10
})
11
knex.schema.alterTable(this.tableName, (table) => {
12
table.increments('id', { primaryKey: false }).alter()
13
})
14
}
15
Advertisement
Answer
This topic isn’t a question, this is the way that I found to solve the problem using multiple primary key, where an id is auto_increment in the table.