Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 496 Bytes

File metadata and controls

18 lines (14 loc) · 496 Bytes

Multy-Crieteria-Decision-Making-Spark

Installing

before executing the project you have to import this sql script to MySqlWorkbench

CREATE DATABASE `mcdms` /*!40100 DEFAULT CHARACTER SET latin1 */;
CREATE TABLE `Users` (
  `user_id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(80) NOT NULL,
  `username` varchar(50) NOT NULL,
  `password` char(41) NOT NULL,
  PRIMARY KEY (`user_id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;