
If you are currently using TWIG 2.6.2 (should also 
work for TWIG 2.7, but not tested) you can duplicate
the TWIG database and convert it into a twiggi database


1) login as root

2) dump your TWIG database

# mysqldump twig > my_twig_db

3) create the new twiggi database

# mysqladmin create twiggi
# mysql twiggi < my_twig_db

4) upgrade

# mysql -f twiggi < db-move-twig-2.6.2-to-twiggi 

5) grant permissions

# echo "grant all on twiggi.* to twiggi_admin@localhost identified by 'twig!gi';" | mysql twiggi
# mysqladmin reload
