Quote Originally Posted by imperialis View Post
I did what you said and I get this error
1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQL: RENAME TABLE reward_points_history TO reward_status_track' at line 1
in:
[SQL: RENAME TABLE reward_points_history TO reward_status_track ;]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

I am new to zencart so i could have done anything wrong
If you use a prefix in your table names (iE mine is zen_) then you would need to change that SQL statement to read:
Code:
RENAME TABLE `zen_reward_point_history` TO `zen_reward_status_track`;
If your prefix is different you just replace zen_ with yours. Then run it. It should make the change then.