Skip to content

Commit 4790d93

Browse files
committed
renamed file name
1 parent afc9ed4 commit 4790d93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

database/phpmyadmin/sql/create_tables.sql.template renamed to database/phpmyadmin/sql/create_tables.sql.template.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ USE phpmyadmin;
2626
--
2727
-- CREATE USER IF NOT EXISTS for phpmyadmin database
2828
--
29-
CREATE USER IF NOT EXISTS '$PMA_CONTROLUSER'@'%' IDENTIFIED VIA mysql_native_password USING PASSWORD('$PMA_CONTROLPASS');
29+
CREATE USER IF NOT EXISTS 'pma_controluser'@'%' IDENTIFIED BY 'db_authentication_password';
3030

3131
--
3232
-- Privileges
3333
--
3434
-- (activate this statement if necessary)
35-
GRANT SELECT, INSERT, DELETE, UPDATE, ALTER ON `phpmyadmin`.* TO '$PMA_CONTROLUSER'@'%';
35+
GRANT SELECT, INSERT, DELETE, UPDATE, ALTER ON `phpmyadmin`.* TO 'pma_controluser'@'%';
3636

3737
-- --------------------------------------------------------
3838

@@ -356,4 +356,4 @@ CREATE TABLE IF NOT EXISTS `pma__export_templates` (
356356
UNIQUE KEY `u_user_type_template` (`username`,`export_type`,`template_name`)
357357
)
358358
COMMENT='Saved export templates'
359-
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
359+
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;

0 commit comments

Comments
 (0)