Skip to content

Instantly share code, notes, and snippets.

@codeschool-courses
Created August 30, 2011 20:02
Show Gist options
  • Save codeschool-courses/1181868 to your computer and use it in GitHub Desktop.
Save codeschool-courses/1181868 to your computer and use it in GitHub Desktop.
Rails for Zombies 2 - Challenge 2-9
ActiveRecord::Schema.define(:version => 20110814152905) do
create_table "locations" do |t|
t.integer "name"
t.integer "tweeter_id" # BRAINS!!!
end
create_table "tweets" do |t|
t.string "message"
t.boolean "show_location", :default => false
t.integer "zombie_id"
t.timestamps
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment