Update DB Scheme giving error

Agree. Please use the latest strapi. Also as I can see the error, looks like you are trying to add the unique constrain in the field, if yes, you can do it using below code.

 "merchant": {
      "type": "string",
      "column": {
        "unique": true
      }
    }

Column field is used to update the existing column schema within the table.