View Single Post
  #5  
Old 03-28-2019, 06:43 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,071
Default

Quote:
Originally Posted by kwikmr2 View Post
Thanks for the quick reply!

Silly question though, how do I set my 'db_version' back?
This is done in the database via table `db_version`

Code:
MariaDB [peq]> select * from db_version;
+---------+
| version |
+---------+
|    9138 |
+---------+
1 row in set (0.00 sec)
You can set it back manually yourself using a DB browser or you can simply run the following query

Code:
UPDATE db_version set version = 9130;
Reply With Quote