Skip to content

Commit 79e023c

Browse files
committed
[symfony#1926] Fixing some spacing in code block
1 parent 3e47f1b commit 79e023c

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

cookbook/configuration/pdo_session_storage.rst

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,11 @@ For MSSQL, the statement might look like the following:
190190

191191
.. code-block:: sql
192192
193-
CREATE TABLE [dbo].[session](
194-
[session_id] [nvarchar](255) NOT NULL,
195-
[session_value] [ntext] NOT NULL,
196-
[session_time] [int] NOT NULL,
197-
PRIMARY KEY CLUSTERED
198-
(
193+
CREATE TABLE [dbo].[session](
194+
[session_id] [nvarchar](255) NOT NULL,
195+
[session_value] [ntext] NOT NULL,
196+
[session_time] [int] NOT NULL,
197+
PRIMARY KEY CLUSTERED(
199198
[session_id] ASC
200199
) WITH (
201200
PAD_INDEX = OFF,
@@ -204,4 +203,4 @@ For MSSQL, the statement might look like the following:
204203
ALLOW_ROW_LOCKS = ON,
205204
ALLOW_PAGE_LOCKS = ON
206205
) ON [PRIMARY]
207-
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
206+
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

0 commit comments

Comments
 (0)