Skip to content

Instantly share code, notes, and snippets.

@Sadin
Created June 19, 2011 03:47
Show Gist options
  • Save Sadin/1033733 to your computer and use it in GitHub Desktop.
Save Sadin/1033733 to your computer and use it in GitHub Desktop.
ActiveRecord::Schema.define(:version => 20110517142523) do
create_table "comments", :force => true do |t|
t.string "commenter"
t.text "body"
t.integer "post_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "posts", :force => true do |t|
t.string "name"
t.string "title"
t.text "content"
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