I just got Oracle connectivity working on my Mac rails installation, and I started with a simple migration to test. def self.up create_table "computers", :force => true do |t| t.column "description", :string t.column "brand", :string end end def self.down drop_table "computers" end end This seemed to work, but when I script/generate scaffold Computer Admin the scaffolding didn''t fully generate the _form partial. Has anyone else experienced this? Brian -- Posted via http://www.ruby-forum.com/.