Skip to content

Commit 7588066

Browse files
committed
minor #14034 Change char to varchar type (PF4Public)
This PR was merged into the 3.4 branch. Discussion ---------- Change char to varchar type This should fix symfony/symfony#37672 Commits ------- cff16b0 Change char to varchar type
2 parents ed8c39d + cff16b0 commit 7588066

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

security/remember_me.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ so ``DoctrineTokenProvider`` can store the tokens:
307307
308308
CREATE TABLE `rememberme_token` (
309309
`series` char(88) UNIQUE PRIMARY KEY NOT NULL,
310-
`value` char(88) NOT NULL,
310+
`value` varchar(88) NOT NULL,
311311
`lastUsed` datetime NOT NULL,
312312
`class` varchar(100) NOT NULL,
313313
`username` varchar(200) NOT NULL

0 commit comments

Comments
 (0)