Commit 3b910176 authored by Arnaud Fontaine's avatar Arnaud Fontaine

Add missing semicolon to the end of MySQL statement

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39245 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 56a1bf8b
......@@ -149,7 +149,7 @@ $ var/bin/mysql -h 127.0.0.1 -u root
mysql> create database development_site;
mysql> grant all privileges on development_site.* to 'development_user'@'localhost' identified by 'development_password';
mysql> grant all privileges on development_site.* to 'development_user'@'127.0.0.1' identified by 'development_password';
mysql> create database test212
mysql> create database test212;
mysql> grant all privileges on test212.* to 'test'@'localhost';
mysql> grant all privileges on test212.* to 'test'@'127.0.0.1';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment