8000 Fixed SQL `create table` statement. · web-dev/symfony-docs@56ef67f · GitHub
[go: up one dir, main page]

Skip to content

Commit 56ef67f

Browse files
pkruithofweaverryan
authored andcommitted
Fixed SQL create table statement.
1 parent 26085ce commit 56ef67f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cookbook/configuration/pdo_session_storage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ following (MySQL):
165165
CREATE TABLE `session` (
166166
`session_id` varchar(255) NOT NULL,
167167
`session_value` text NOT NULL,
168-
`session_time` int(11) NOT NULL
169-
PRIMARY KEY (`session_id`),
168+
`session_time` int(11) NOT NULL,
169+
PRIMARY KEY (`session_id`)
170170
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
171171
172172
PostgreSQL

0 commit comments

Comments
 (0)
0