fix schema problem

This commit is contained in:
Dave Horton
2020-07-22 11:35:56 -04:00
parent 3be0412de1
commit 5ae6cda12a
+1 -1
View File
@@ -56,7 +56,7 @@ token CHAR(36) NOT NULL UNIQUE ,
account_sid CHAR(36),
service_provider_sid CHAR(36),
expires_at TIMESTAMP,
last_used TIMESTAMP ON UPDATE NOW(),
last_used TIMESTAMP,
created_at TIMESTAMP DEFAULT NOW(),
PRIMARY KEY (api_key_sid)
) ENGINE=InnoDB COMMENT='An authorization token that is used to access the REST api';