Part 2 - Set up Database

Currently there is only MySQL support

Once logged into the MySQL Console, create the database:

NOTE Don't forget to unzip your taskfort.tar.gz file to a location that you will have access to. I typically unzip the file to /opt/workspace/taskfort

CREATE DATABASE taskfort CHARACTER SET utf8 COLLATE utf8_bin;

Navigate to [taskfort_root]/taskfort_ci/application/migrations then import the template.sql file:

mysql -u your_mysql_user -p taskfort < template.sql

It will prompt you for your database password.