Permalink
Cannot retrieve contributors at this time
8 lines (8 sloc)
416 Bytes
|
CREATE DATABASE IF NOT EXISTS mythconverg; |
|
CREATE USER IF NOT EXISTS 'mythtv'@'localhost' IDENTIFIED WITH mysql_native_password; |
|
ALTER USER 'mythtv'@'localhost' IDENTIFIED BY 'mythtv'; |
|
GRANT ALL ON mythconverg.* TO mythtv@localhost; |
|
FLUSH PRIVILEGES; |
|
GRANT CREATE TEMPORARY TABLES ON mythconverg.* TO mythtv@localhost; |
|
FLUSH PRIVILEGES; |
|
ALTER DATABASE mythconverg DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.