search for: 001_create_test_objects

Displaying 1 result from an estimated 1 matches for "001_create_test_objects".

2006 May 06
0
Cant read an Array as an attribute of a record
...e issue here? I''m sure I''m missing something simple.... I realize that I''m not saving the object to the database, I''ve got a requirement to create and manipulate it in memory before persisting it. Thanks in advance to anyone who may help! Test/app/db/migrate/001_create_test_objects.rb ------------------------------------------------------------------ class CreateTestObjects < ActiveRecord::Migration def self.up create_table :test_objects do |t| t.column :name, :string t.column :test_array, :string end end def self.down drop_table :test_object...