Error in Basic Rails Migration
I'm using some free time to look through O'Reilly's Ruby on Rails book, and I've hit a presumably simple but confusing stumbling block on migrations. I've googled a bit and looked at the errata but haven't found anything yet. Any help?(Update: I'm insane. In programming there's this concept of "variables" and "scope" which I apparently overlooked.)
I'm on page 24, building the 'photos' application. I believe I've followed every step of the tutorial to the letter so far. When I run 'rake migrate' I get this:
(in /Users/scott/Projects/Rails/photos)
== CreatePhotos: migrating ====================================================
-- create_table(:photos)
-- photo()
rake aborted!
undefined method 'photo' for #<ActiveRecord::ConnectionAdapters::MysqlAdapter:0x2217a98>
There's practically nothing in the project at this point. I created photos_development and my 001_create_photos.rb looks like this:
class CreatePhotos < ActiveRecord::Migration
def self.up
create_table :photos do |t|
photo.column "filename", :string
end
end
def self.down
drop_table :photos
end
end
I'm on 10.4.8 using Locomotive, which says it has "Standard Rails Sept 2006."
Help!

Error in Basic Rails Migration
Posted Dec 24, 2006 — 5 comments below
Posted Dec 24, 2006 — 5 comments below
dominik Wagner — Dec 24, 06 2844
photo.column into
t.column
or you change
create_table :photos do |t|
into
create_table :photos do |photo|
cheers and merry xmas,
dom
Scott Stevenson — Dec 24, 06 2846
Can I get away with blaming the lack of a compiler?
Daniel Lyons — Dec 24, 06 2851
@items << Product.new(id, 1)
@current_item = Product.new(id, 1)
Upon changing that to this, it just worked:
@current_item = Product.new(id, 1)
@items << @current_item
It was one of the more bizarre and hard to track down errors I've ever seen.
Andrei Maxim — Dec 25, 06 2866
However, creating two almost identical objects (the two Product.new calls) is a serious logic error that's usually really hard to track down regardless of the presence of a compiler.
Don Rainwater — Dec 28, 06 2924