Working on getting Oracle auto column imports working.
This commit is contained in:
parent
d6c5042aa6
commit
6b78e599f0
|
@ -864,7 +864,7 @@ describe.each([
|
||||||
})
|
})
|
||||||
|
|
||||||
!isInternal &&
|
!isInternal &&
|
||||||
it("can update a row on an external table with a primary key", async () => {
|
it.only("can update a row on an external table with a primary key", async () => {
|
||||||
const tableName = uuid.v4().substring(0, 10)
|
const tableName = uuid.v4().substring(0, 10)
|
||||||
await client!.schema.createTable(tableName, table => {
|
await client!.schema.createTable(tableName, table => {
|
||||||
table.increments("id").primary()
|
table.increments("id").primary()
|
||||||
|
|
|
@ -98,7 +98,7 @@ const SCHEMA: Integration = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
const UNSUPPORTED_TYPES = ["BLOB", "CLOB", "NCLOB"]
|
const UNSUPPORTED_TYPES = ["BLOB", "NCLOB"]
|
||||||
|
|
||||||
const OracleContraintTypes = {
|
const OracleContraintTypes = {
|
||||||
PRIMARY: "P",
|
PRIMARY: "P",
|
||||||
|
|
Loading…
Reference in New Issue