I usually use a database in applications that I develop locally.
With mysql
whenever I need to clone the application to another machine, I need to generate a dump
of the database and import it to the local database again. I think I could eliminate some unnecessary effort by using a SQLite
base that would be stored in the repository along with the application files.
If you can do prompt
of mysql
or linux
better.
I believe that versioning the database in this way may not be recommended in cases where more than one person is manipulating the database data. But that will not be a problem in my specific case.