What's new? | Help | Directory | Sign in
Google
                
Code License: MIT License
Labels: rails, mssql, sqlserver, plugin
How to join?
Project owners:
  lukewendling

A set of tools and conventions for using mssql 2005 with Rails

Installation

ruby script/plugin install http://rails-mssql-tools.googlecode.com/svn/trunk/

Usage

The objective of this plugin is to:

  1. implement a conventional method for migrating mssql procs, views, and triggers.
  2. for legacy mssql databases, resolve camel-cased attributes to Rails' conventional underscored names, allowing developers to refer to model object attributes in the conventional manner:
- model.user_name vs. model.UserName (camel-case is a common naming convention in the MS dev community)

- the legacy db consistently uses camel-casing for column names (not a mix of camel-case and underscore)