Commit 23301dc9 authored by Marco Pivetta's avatar Marco Pivetta Committed by GitHub

Merge pull request #2703 from JustBlackBird/table_generator_docs

Fix docs for Doctrine\DBAL\Id\TableGenerator
parents 66fd914b 18ce15f6
......@@ -39,9 +39,9 @@ use Doctrine\DBAL\Connection;
*
* CREATE sequences (
* sequence_name VARCHAR(255) NOT NULL,
* sequence_value INT NOT NULL DEFAULT '1',
* sequence_increment_by INT NOT NULL DEFAULT '1',
* PRIMARY KEY (table_name)
* sequence_value INT NOT NULL DEFAULT 1,
* sequence_increment_by INT NOT NULL DEFAULT 1,
* PRIMARY KEY (sequence_name)
* );
*
* Technically this generator works as follows:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment