Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorWouter Timmermans <protowouter@gmail.com>2011-06-29 14:39:59 +0400
committerWouter Timmermans <protowouter@gmail.com>2011-06-29 14:39:59 +0400
commit7de12e7a5a4606a6746abce84b069eb34767d0bf (patch)
tree2ea8aedc1ca7b727b1d510f2de1271a6dd0b6c83 /db
parent53c87562f495cedc63949327abe17947541fc816 (diff)
typo in oauth2 migration
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20110623210918_add_o_auth2_support.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20110623210918_add_o_auth2_support.rb b/db/migrate/20110623210918_add_o_auth2_support.rb
index 8bf691d19..3118a56b4 100644
--- a/db/migrate/20110623210918_add_o_auth2_support.rb
+++ b/db/migrate/20110623210918_add_o_auth2_support.rb
@@ -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