Into the package there is a mysql script: "create.sql".

First you must create your mysql database, log into mysql with root privileges and create the database with this:

mysql> create database blog_memes;

then you can load the create.sql with this command

mysql> source 'create.sql';

this will create your database.