Skip to content

Commit

Permalink
Merge pull request #8247 from rnesius/sqlserver-template
Browse files Browse the repository at this point in the history
Adding sqlserver.yml template to satisfy "-d sqlserver"
  • Loading branch information
rafaelfranca committed Nov 17, 2012
2 parents 154fee2 + 716222c commit 02e3684
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
5 changes: 5 additions & 0 deletions railties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##

* Add sqlserver.yml template file to satisfy '-d sqlserver' being passed to 'rails new'.
Fix #6882

*Robert Nesius*

* Rake test:uncommitted finds git directory in ancestors *Nicolas Despres*

* Add dummy app Rake tasks when --skip-test-unit and --dummy-path is passed to the plugin generator.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# SQL Server (2005 or higher recommended)
#
# Install the adapters and driver
# gem install tiny_tds
# gem install activerecord-sqlserver-adapter
#
# Ensure the activerecord adapter and db driver gems are defined in your Gemfile
# gem 'tiny_tds'
# gem 'activerecord-sqlserver-adapter'
#
# You should make sure freetds is configured correctly first.
# freetds.conf contains host/port/protocol_versions settings.
# http://freetds.schemamania.org/userguide/freetdsconf.htm
#
# A typical Microsoft server
# [mssql]
# host = mssqlserver.yourdomain.com
# port = 1433
# tds version = 7.1

# If you can connect with "tsql -S servername", your basic FreeTDS installation is working.
# 'man tsql' for more info
# Set timeout to a larger number if valid queries against a live db fail

development:
adapter: sqlserver
encoding: utf8
reconnect: false
database: <%= app_name %>_development
username: <%= app_name %>
password:
timeout: 25
dataserver: from_freetds.conf


# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
adapter: sqlserver
encoding: utf8
reconnect: false
database: <%= app_name %>_test
username: <%= app_name %>
password:
timeout: 25
dataserver: from_freetds.conf

production:
adapter: sqlserver
encoding: utf8
reconnect: false
database: <%= app_name %>_production
username: <%= app_name %>
password:
timeout: 25
dataserver: from_freetds.conf

0 comments on commit 02e3684

Please sign in to comment.