mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-16 18:19:47 +05:30
Removed unnecessary column from the table
This commit is contained in:
parent
945d60bd5d
commit
9a41ab8bfc
@ -49,11 +49,9 @@ CREATE TABLE `scopes` (
|
|||||||
CREATE TABLE `oauth_session_scopes` (
|
CREATE TABLE `oauth_session_scopes` (
|
||||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`session_id` int(11) unsigned NOT NULL,
|
`session_id` int(11) unsigned NOT NULL,
|
||||||
`access_token` varchar(40) NOT NULL DEFAULT '',
|
|
||||||
`scope` varchar(255) NOT NULL DEFAULT '',
|
`scope` varchar(255) NOT NULL DEFAULT '',
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
KEY `session_id` (`session_id`),
|
KEY `session_id` (`session_id`),
|
||||||
KEY `access_token` (`access_token`),
|
|
||||||
KEY `scope` (`scope`),
|
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_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
|
CONSTRAINT `oauth_session_scopes_ibfk_4` FOREIGN KEY (`session_id`) REFERENCES `oauth_sessions` (`id`) ON DELETE CASCADE
|
||||||
|
Loading…
Reference in New Issue
Block a user