Closed dgonzf closed 6 years ago
TaskBoard defaults to SQLite. You can alter the settings in api.php to use any database supported by RedBeanPHP.
Hi, this can be done still in latest release?
EDIT: changing index.php would be enough?
from:
R::setup('sqlite:taskboard.sqlite');
to:
R::setup( 'mysql:host=localhost;dbname=mydatabase', 'user', 'password' );
It can, and correct on doing it.
It can, and correct on doing it.
Ok, and does not need previous SQL structure?
Nope, the database is created when accessed, as that's what RedBeanPHP does.
A suggestion, in this moment TaskBoard only supports SQLite databases, I think it would be interesting to be able to use other databases such as MySQL/MariaDB and Postgres likes Kanboard.