Quick start

The following instructions are all you need to quickly create a MySQL Database then load the BaseSchema into it.

Create a MySQL database

The following assumes that your are experienced with MySQL and are able to login using an appropriately authorised account.

$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
...
mysql> create database mydatabase

Download the Base Schema

Follow the link below to download the latest version of the BaseSchema SQL.

BaseSchema-latest.sql

Initialise the database

$ mysql -u root -p -D mydatabase < ~/Downloads/BaseSchema-1.0.0.sql
Enter password:
$