This commit is contained in:
Maxwell Salzberg 2011-10-07 14:21:32 -07:00
parent 3561021a90
commit b334a048bf

View file

@ -178,6 +178,13 @@ ActiveRecord::Schema.define(:version => 20111003232053) do
add_index "notifications", ["target_id"], :name => "index_notifications_on_target_id"
add_index "notifications", ["target_type", "target_id"], :name => "index_notifications_on_target_type_and_target_id"
create_table "o_embed_caches", :force => true do |t|
t.string "url", :limit => 1024, :null => false
t.text "data", :null => false
end
add_index "o_embed_caches", ["url"], :name => "index_o_embed_caches_on_url", :length => {"url"=>255}
create_table "oauth_access_tokens", :force => true do |t|
t.integer "authorization_id", :null => false
t.string "access_token", :limit => 32, :null => false