Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

Commit

Permalink
updated object templates for mysql and pgsql to allow for custom sock…
Browse files Browse the repository at this point in the history
…et_path assignments.
  • Loading branch information
Taylor McClure committed Jul 31, 2018
1 parent 752bce0 commit 9543d82
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions templates/default/object.idomysqlconnection.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ object IdoMysqlConnection <%= @object.inspect -%> {
<% if @database -%>
database = <%= @database.inspect %>
<% end -%>
<% if @socket_path -%>
socket_path = <%= @socket_path.inspect %>
<% end -%>
<% if @table_prefix -%>
table_prefix = <%= @table_prefix.inspect %>
<% end -%>
Expand Down
3 changes: 3 additions & 0 deletions templates/default/object.idopgsqlconnection.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ object IdoPgsqlConnection <%= @object.inspect -%> {
<% if @database -%>
database = <%= @database.inspect %>
<% end -%>
<% if @socket_path -%>
socket_path = <%= @socket_path.inspect %>
<% end -%>
<% if @table_prefix -%>
table_prefix = <%= @table_prefix.inspect %>
<% end -%>
Expand Down

0 comments on commit 9543d82

Please sign in to comment.