i have some SQL table like this Table picture
I want move the commision to at beginning of table, its possible for doing that ?
This my migration code :
class UsersSchema extends Schema {
up () {
this.table('users', (table) => {
table.string('commision', 255).nullable()
})
}