You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: oauth.ddl
+2-2
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ CREATE DATABASE oauth;
25
25
USE oauth;
26
26
27
27
CREATETABLEoauth_access_tokens (
28
-
access_token VARCHAR(40) NOT NULL COMMENT 'System generated access token',
28
+
access_token VARCHAR(40) NOT NULL COMMENT 'System generated access token. Use appropriate COLLATION for case-sensitive tokens. Related issue https://github.com/rails/rails/issues/20133',
refresh_token VARCHAR(40) NOT NULL COMMENT 'System generated refresh token',
79
+
refresh_token VARCHAR(40) NOT NULL COMMENT 'System generated refresh token. Use appropriate COLLATION for case-sensitive tokens. Related issue https://github.com/rails/rails/issues/20133',
0 commit comments