update deps

This commit is contained in:
Dave Horton
2020-08-18 14:50:56 -04:00
parent ee16cdd859
commit b3e38ab761
3 changed files with 25 additions and 11 deletions

View File

@@ -55,7 +55,9 @@ api_key_sid CHAR(36) NOT NULL UNIQUE ,
token CHAR(36) NOT NULL UNIQUE ,
account_sid CHAR(36),
service_provider_sid CHAR(36),
expires_at TIMESTAMP,
expires_at TIMESTAMP NULL,
last_used TIMESTAMP NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (api_key_sid)
) ENGINE=InnoDB COMMENT='An authorization token that is used to access the REST api';