Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 297 Bytes

File metadata and controls

11 lines (9 loc) · 297 Bytes

Preparing the Database on local machine

Do the following as root

 create database ticketing;
 create user gaurav_ticketing identified by 'Ticketing 1';
 use ticketing;
 grant all privileges on ticketing to gaurav_ticketing;
 grant all privileges on ticketing.* to gaurav_ticketing;