mirror of
https://github.com/YunoHost-Apps/phpmyadmin_ynh.git
synced 2024-09-03 19:56:46 +02:00
209c11b5d8
* 5.1.1
27 lines
1 KiB
SQL
27 lines
1 KiB
SQL
-- --------------------------------------------------------
|
|
-- SQL Commands to set up the pmadb as described in the documentation.
|
|
--
|
|
-- This file is meant for use with MySQL 5 and above!
|
|
--
|
|
-- This script expects the user pma to already be existing. If we would put a
|
|
-- line here to create him too many users might just use this script and end
|
|
-- up with having the same password for the controluser.
|
|
--
|
|
-- This user "pma" must be defined in config.inc.php (controluser/controlpass)
|
|
--
|
|
-- Please don't forget to set up the tablenames in config.inc.php
|
|
--
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
DROP DATABASE `__DB_USER__`;
|
|
|
|
--
|
|
-- Database : `__DB_USER__`
|
|
--
|
|
CREATE DATABASE IF NOT EXISTS `__DB_USER__`
|
|
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
|
USE __DB_USER__;
|
|
|
|
GRANT SELECT, INSERT, DELETE, UPDATE ON `__DB_USER__`.* TO
|
|
'__DB_USER__'@localhost;
|