From 9a41ab8bfc0b3addc979d5e2d97b995d53f13e55 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Tue, 29 Jan 2013 14:14:50 +0000 Subject: [PATCH] Removed unnecessary column from the table --- sql/database.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/sql/database.sql b/sql/database.sql index b260d9f0..a21aeb94 100644 --- a/sql/database.sql +++ b/sql/database.sql @@ -49,11 +49,9 @@ CREATE TABLE `scopes` ( CREATE TABLE `oauth_session_scopes` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `session_id` int(11) unsigned NOT NULL, - `access_token` varchar(40) NOT NULL DEFAULT '', `scope` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `session_id` (`session_id`), - KEY `access_token` (`access_token`), KEY `scope` (`scope`), CONSTRAINT `oauth_session_scopes_ibfk_3` FOREIGN KEY (`scope`) REFERENCES `scopes` (`scope`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `oauth_session_scopes_ibfk_4` FOREIGN KEY (`session_id`) REFERENCES `oauth_sessions` (`id`) ON DELETE CASCADE