我尝试使用 POINT 数据类型&amp ;;创建模式。 knex似乎并没有在数据库中创建它。然而,它创造了所有其他领域。
以下是我的迁移文件:
exports.up = (knex, Promise) => {
return Promise.all([
knex.schema.createTableIfNotExists('users', (table) => {
table.uuid('id').primary()
table.string('username', 35)
table.text('pword').notNullable()
table.string('first_name', 55)
table.string('last_name', 55)
knex.schema.raw('coordinates POINT DEFAULT POINT (37.3875, -122.0575)')
table.timestamp('date_created').defaultTo(knex.fn.now())
})
])
}
exports.down = (knex, Promise) => {
return Promise.all([
knex.schema.dropTableIfExists('users')
])
}
以下是失败的代码行:
knex.schema.raw('coordinates POINT DEFAULT POINT (37.3875, -122.0575)')
我还尝试删除架构属性:
knex.raw('coordinates POINT DEFAULT POINT (37.3875, -122.0575)')
没有打印出错误,它似乎无声地失败。
我用knex.schema.raw('coordinates POINT DEFAULT POINT (37.3875, -122.0575)').then(data => console.log(data)).catch(error => console.log(error))
{ error: coordinates POINT DEFAULT POINT (37.3875, -122.0575) - syntax error at or near "coordinates"
at Connection.parseE (/Users/james/plural/backend-development/node_modules/pg/lib/connection.js:554:11)
at Connection.parseMessage (/Users/james/plural/backend-development/node_modules/pg/lib/connection.js:381:17)
at Socket.<anonymous> (/Users/james/plural/backend-development/node_modules/pg/lib/connection.js:117:22)
at emitOne (events.js:96:13)
at Socket.emit (events.js:188:7)
at readableAddChunk (_stream_readable.js:172:18)
at Socket.Readable.push (_stream_readable.js:130:10)
at TCP.onread (net.js:542:20)
name: 'error',
length: 92,
severity: 'ERROR',
code: '42601',
detail: undefined,
hint: undefined,
position: '1',
internalPosition: undefined,
internalQuery: undefined,
where: undefined,
schema: undefined,
table: undefined,
column: undefined,
dataType: undefined,
constraint: undefined,
file: 'scan.l',
line: '1081',
routine: 'scanner_yyerror' }
答案 0 :(得分:7)
请改为尝试:
table.specificType('coordinates', 'POINT').defaultTo(knex.raw('POINT (37.3875, -122.0575)'))
对于Knex未涵盖的SQL类型,您始终可以使用以下格式:
table.specificType('column_name', 'TYPE')