Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 56ef67f

Browse filesBrowse files
pkruithofweaverryan
authored andcommitted
Fixed SQL create table statement.
1 parent 26085ce commit 56ef67f
Copy full SHA for 56ef67f

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎cookbook/configuration/pdo_session_storage.rst

Copy file name to clipboardExpand all lines: cookbook/configuration/pdo_session_storage.rst
+2-2Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.