Reedy has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/79924


Change subject: Fix mixed indenting - tabs to spaces
......................................................................

Fix mixed indenting - tabs to spaces

Change-Id: Ic01febb9dd1135a6ec4e7b83bcbc1a9d69aa9dc0
---
M backend/schema/mysql/OAuth.sql
1 file changed, 4 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/OAuth 
refs/changes/24/79924/1

diff --git a/backend/schema/mysql/OAuth.sql b/backend/schema/mysql/OAuth.sql
index f5bb205..beb61d0 100644
--- a/backend/schema/mysql/OAuth.sql
+++ b/backend/schema/mysql/OAuth.sql
@@ -27,8 +27,8 @@
     oarc_email_authenticated varbinary(14) NULL,
     -- What wiki this is allowed on (a single wiki or '*' for all)
     oarc_wiki varbinary(32) NOT NULL,
-       -- Grants needed for client consumers
-       oarc_grants blob NOT NULL,
+    -- Grants needed for client consumers
+    arc_grants blob NOT NULL,
     -- Timestamp of consumer proposal
     oarc_registration varbinary(14) NOT NULL,
 
@@ -47,7 +47,7 @@
 ) /*$wgDBTableOptions*/;
 
 CREATE UNIQUE INDEX /*i*/oarc_consumer_key
-       ON /*_*/oauth_registered_consumer (oarc_consumer_key);
+    ON /*_*/oauth_registered_consumer (oarc_consumer_key);
 CREATE UNIQUE INDEX /*i*/oarc_name_version_user
     ON /*_*/oauth_registered_consumer (oarc_name,oarc_user_id,oarc_version);
 CREATE INDEX /*i*/oarc_user_id ON /*_*/oauth_registered_consumer 
(oarc_user_id);
@@ -73,7 +73,7 @@
 ) /*$wgDBTableOptions*/;
 
 CREATE UNIQUE INDEX /*i*/oaac_access_token
-       ON /*_*/oauth_accepted_consumer (oaac_access_token);
+    ON /*_*/oauth_accepted_consumer (oaac_access_token);
 CREATE UNIQUE INDEX /*i*/oaac_user_consumer_wiki
     ON /*_*/oauth_accepted_consumer (oaac_user_id,oaac_consumer_id,oaac_wiki);
 CREATE INDEX /*i*/oaac_consumer_user

-- 
To view, visit https://gerrit.wikimedia.org/r/79924
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic01febb9dd1135a6ec4e7b83bcbc1a9d69aa9dc0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/OAuth
Gerrit-Branch: master
Gerrit-Owner: Reedy <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to