7 lines
268 B
SQL
7 lines
268 B
SQL
CREATE DATABASE IF NOT EXISTS billinggold;
|
|
CREATE USER IF NOT EXISTS 'chatbot'@'localhost' IDENTIFIED BY 'chatbot123';
|
|
GRANT ALL PRIVILEGES ON billinggold.* TO 'chatbot'@'localhost';
|
|
FLUSH PRIVILEGES;
|
|
USE billinggold;
|
|
source /home/wartana/myApp/chat-bot/customer.sql;
|