This is the database that powers the web and android verisons of RemoveMyWaste.
If you have a github account, you can submit issues here.
Otherwise, you can (anonymously!) submit corrections or updates here.
Pull requests and forks welcome.
CREATE DATABASE MaterialsDB;
USE MaterialsDB;
CREATE USER 'group24'@'localhost' IDENTIFIED BY 'PASSWORD';
GRANT ALL PRIVILEGES ON MaterialsDB.* to 'group24'@'localhost';
mysql -u group24 -p MaterialsDB
source database.sql
\q