Database restore issue - old version 13.26 and new version 13.29

I’ve clone erpnext 13 using
bench get-app branch version-13 erpnext GitHub - frappe/erpnext: Free and Open Source Enterprise Resource Planning (ERP)
this command, 13.29 is my current version.
But I’ve restore DB backup of erpnext 13.26, till then it throwing following error :
pymysql.err.OperationalError: (1054, “Unknown column ‘utgst_account’ in ‘field list’”)

why I’m getting this error.
Please guide me

Run command Bench migrate after restore

You get this error because there were changes made to the database schema between your version numbers.

To get around this, you restore the database of the OLDER version to your system and then run the following commands:

bench migrate
sudo service mysql restart

This should adjust the old database that you restored to the newer schema so it will work properly.

BKM :sunglasses:

Okay I try