8000 Change char to varchar type · symfony/symfony-docs@cff16b0 · GitHub
[go: up one dir, main page]

Skip to content

Commit cff16b0

Browse files
authored
Change char to varchar type
1 parent 35c288c commit cff16b0

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)
0