Skip to content

Instantly share code, notes, and snippets.

@codeschool-courses
Created August 30, 2011 19:02
Show Gist options
  • Save codeschool-courses/1181718 to your computer and use it in GitHub Desktop.
Save codeschool-courses/1181718 to your computer and use it in GitHub Desktop.
Rails for Zombies 2 - Challenge 2-1,2-2,2-4
ActiveRecord::Schema.define(:version => 20110814152905) do
create_table "tweets", :force => true do |t|
t.string "message"
t.string "location", :limit => 30
t.boolean "show_location", :default => false
t.integer "zombie_id"
t.datetime "created_at"
t.datetime "updated_at"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment