Commit 18ce15f6 authored by Dmitriy Simushev's avatar Dmitriy Simushev

Fix docs for Doctrine\DBAL\Id\TableGenerator

parent 66fd914b
......@@ -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