Skip to content

Commit e3137f0

Browse files
committed
chore: changelog consistency
1 parent e78ab27 commit e3137f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1717
```sql
1818
CREATE TABLE IF NOT EXISTS oauth_clients (
1919
app_id VARCHAR(64),
20-
client_id VARCHAR(128) NOT NULL,
20+
client_id VARCHAR(255) NOT NULL,
2121
is_client_credentials_only BOOLEAN NOT NULL,
2222
PRIMARY KEY (app_id, client_id),
2323
FOREIGN KEY(app_id) REFERENCES apps(app_id) ON DELETE CASCADE
@@ -41,7 +41,7 @@ CREATE INDEX oauth_session_external_refresh_token_index ON oauth_sessions(app_id
4141

4242
CREATE TABLE oauth_m2m_tokens (
4343
app_id VARCHAR(64) DEFAULT 'public',
44-
client_id VARCHAR(128) NOT NULL,
44+
client_id VARCHAR(255) NOT NULL,
4545
iat BIGINT UNSIGNED NOT NULL,
4646
exp BIGINT UNSIGNED NOT NULL,
4747
PRIMARY KEY (app_id, client_id, iat),
@@ -54,7 +54,7 @@ CREATE INDEX oauth_m2m_token_exp_index ON oauth_m2m_tokens(exp DESC);
5454
CREATE TABLE IF NOT EXISTS oauth_logout_challenges (
5555
app_id VARCHAR(64) DEFAULT 'public',
5656
challenge VARCHAR(128) NOT NULL,
57-
client_id VARCHAR(128) NOT NULL,
57+
client_id VARCHAR(255) NOT NULL,
5858
post_logout_redirect_uri VARCHAR(1024),
5959
session_handle VARCHAR(128),
6060
state VARCHAR(128),

0 commit comments

Comments
 (0)