ItEr13S11XestionDaComunidadeItEr12S13: Added instructions to create the database in MySQL at README.txt.
This commit is contained in:
parent
7ca314c56e
commit
967c18eaf1
1 changed files with 4 additions and 0 deletions
|
|
@ -14,9 +14,13 @@ CREATE DATABASE navaldevtest;
|
|||
- Create user "naval" with password "naval" with necessary privileges for
|
||||
accessing (creating tables, selecting data from tables, etc.) the
|
||||
previous databases.
|
||||
* PostgreSQL:
|
||||
CREATE USER naval WITH PASSWORD 'naval';
|
||||
GRANT ALL PRIVILEGES ON DATABASE navaldev TO naval;
|
||||
GRANT ALL PRIVILEGES ON DATABASE navaldevtest TO naval;
|
||||
* MySQL:
|
||||
GRANT ALL ON navaldev.* to 'naval'@'localhost' identified by 'naval';
|
||||
GRANT ALL ON navaldevtest.* to 'naval'@'localhost' identified by 'naval';
|
||||
|
||||
+ For HSQLDB. There is nothing to do.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue