我已经在骆驼外壳中创建了迁移,但是当我运行迁移时,它会自动将其转换为蛇形外壳。默认情况下,我如何使其成为驼峰式大小写。
public async up() {
this.schema.createTable(this.tableName, (table) => {
table.increments('id')
table.string('firstName', 50).notNullable()
table.string('lastName', 50).notNullable()
table.string('email', 255).notNullable().unique()
table.string('password', 180).notNullable()
table.string('rememberMeToken').nullable()
table.timestamp('createdAt', { useTz: true })
table.timestamp('updatedAt', { useTz: true })
})
}