Skip to content

Latest commit

 

History

History
executable file
·
33 lines (22 loc) · 760 Bytes

File metadata and controls

executable file
·
33 lines (22 loc) · 760 Bytes

Overview

This is the database that powers the web and android verisons of RemoveMyWaste.

Find something wrong in the database or want to add a new center?

If you have a github account, you can submit issues here.

Otherwise, you can (anonymously!) submit corrections or updates here.

Development

Pull requests and forks welcome.

To create database

CREATE DATABASE MaterialsDB;
USE MaterialsDB;
CREATE USER 'group24'@'localhost' IDENTIFIED BY 'PASSWORD';
GRANT ALL PRIVILEGES ON MaterialsDB.* to 'group24'@'localhost';

To login and update the database

mysql -u group24 -p MaterialsDB
source database.sql
\q