Skip to content

Commit

Permalink
[Tests] [Fixtures] Fixed default database settings
Browse files Browse the repository at this point in the history
  • Loading branch information
willdurand committed Apr 6, 2012
1 parent 2b0d0a9 commit 44b6d26
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion test/fixtures/bookstore/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ propel.disableIdentifierQuoting = true
propel.schema.autoPrefix = true

# For MySQL or Oracle, you also need to specify username & password
#propel.database.user = [db username]
propel.database.user = root
#propel.database.password = [db password]

# Note that if you do not wish to specify the database (e.g. if you
Expand Down
12 changes: 6 additions & 6 deletions test/fixtures/bookstore/runtime-conf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<dsn>mysql:dbname=test</dsn>
<!--
For MySQL and Oracle you must specify username + password separate from DSN:
<user>bookstore</user>
<password></password>
-->
<user>root</user>
<password></password>
<options>
<option id="ATTR_PERSISTENT">false</option>
</options>
Expand Down Expand Up @@ -54,9 +54,9 @@
<dsn>mysql:dbname=test</dsn>
<!--
For MySQL and Oracle you must specify username + password separate from DSN:
<user>bookstore</user>
<password></password>
-->
<user>root</user>
<password></password>
<options>
<option id="ATTR_PERSISTENT">false</option>
</options>
Expand All @@ -76,9 +76,9 @@
<dsn>mysql:dbname=test</dsn>
<!--
For MySQL and Oracle you must specify username + password separate from DSN:
<user>bookstore</user>
<password></password>
-->
<user>root</user>
<password></password>
<options>
<option id="ATTR_PERSISTENT">false</option>
</options>
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/reverse/mysql/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ propel.database = mysql
propel.database.url = mysql:dbname=reverse_bookstore

# For MySQL or Oracle, you also need to specify username & password
#propel.database.user = [db username]
propel.database.user = root
#propel.database.password = [db password]

propel.mysql.tableType = InnoDB
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/reverse/mysql/runtime-conf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<dsn>mysql:dbname=reverse_bookstore</dsn>
<!--
For MySQL and Oracle you must specify username + password separate from DSN:
<user>bookstore</user>
<password></password>
-->
<user>root</user>
<password></password>
<options>
<option id="ATTR_PERSISTENT">false</option>
</options>
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/schemas/runtime-conf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<dsn>mysql:dbname=test</dsn>
<!--
For MySQL and Oracle you must specify username + password separate from DSN:
<user>bookstore</user>
<password></password>
-->
<user>root</user>
<password></password>
<options>
<option id="ATTR_PERSISTENT">false</option>
</options>
Expand Down

0 comments on commit 44b6d26

Please sign in to comment.