I have created migration in camel casing but when i run migration it will automatically convert it into a snake casing. how i can make it camel case by default.
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 })
})
}