Skip to content

Instantly share code, notes, and snippets.

@swombat
Created January 25, 2011 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swombat/795273 to your computer and use it in GitHub Desktop.
Save swombat/795273 to your computer and use it in GitHub Desktop.
create_table "audit_log_events", :force => true do |t|
t.integer "project_id"
t.integer "user_id"
t.integer "object_id"
t.string "object_type"
t.string "event_type"
t.string "display_string"
t.text "data_marshalled"
t.datetime "created_at"
t.datetime "updated_at"
t.text "extended_data_marshalled"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment