On Thu, 5 Mar 2009 05:38:24 -0800 (PST)
"--- z...@m ---" <krishnaprasadva...@gmail.com> wrote:

> 
> am a newbie to rails , I created a model named Employee
> 
> and in migration i added the following
> 
> class CreateEmployee < ActiveRecord::Migration
>   def self.up
>     create_table :employees do |t|
> 
>       t.string :name, :limit => 40, :null => false,:default => ""
>       t.text :address, :limit => 200,:default => ""
>       t.text :location_name, :default => "",:limit => 200
>       t.text :city, :default => "",:limit => 200
>       t.text :state, :default => "",:limit => 200
>       t.integer :zipcode, :limit => 6


Are you using mysql? If so, it doesn't support default values for "text" 
columns.

SH
-- 
Starr Horne
My blog: http://starrhorne.com
Check out my Helpdesk RailsKit: http://railskits.com/helpdesk/


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to