Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding sqlserver.yml template to satisfy "-d sqlserver" #8247

Merged
merged 1 commit into from Nov 17, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions railties/CHANGELOG.md
@@ -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
@@ -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