Merge pull request #666 from protowouter/master

There is a typo in the oauth2 migration.
This commit is contained in:
Jonne Hass 2011-06-29 04:28:04 -07:00
commit d66fb24cdb

View file

@ -43,7 +43,7 @@ class AddOAuth2Support < ActiveRecord::Migration
t.datetime 'updated_at'
end
add_index "oauth_authorizations", ["resource_owner_id", "resource_owner_type", "client_id"], :unque => true, :name => "index_oauth_authorizations_on_resource_owner_and_client_id"
add_index "oauth_authorizations", ["resource_owner_id", "resource_owner_type", "client_id"], :unique => true, :name => "index_oauth_authorizations_on_resource_owner_and_client_id"
end
def self.down