I have successfully switched from using MySQL as database to SQLite. Doing this was actually quite easy as Laravel has full support for SQLite. The hardest part was to rewrite the MySQL Tiny Issue database structure to SQLite.
Furthermore, since the install script only works when there is a connection to MySQL I had to add the user using an SQL statement. After that it is smooth sailing.
Details and SQLite queries are available at my blog.
Hi,
I have successfully switched from using MySQL as database to SQLite. Doing this was actually quite easy as Laravel has full support for SQLite. The hardest part was to rewrite the MySQL Tiny Issue database structure to SQLite.
Furthermore, since the install script only works when there is a connection to MySQL I had to add the user using an SQL statement. After that it is smooth sailing.
Details and SQLite queries are available at my blog.