diff --git a/docs/clients/server/postgres/schemagrammar.html b/docs/clients/server/postgres/schemagrammar.html index e330cb0a5..d33e05296 100644 --- a/docs/clients/server/postgres/schemagrammar.html +++ b/docs/clients/server/postgres/schemagrammar.html @@ -55,6 +55,8 @@ }, this)); },
Create the column definition for a bigint type.
Create the column definition for a tiny integer type.
Create the column definition for a float type.
Method to run a new Raw query on the current client.
incrementstable.increments(name)
- Adds an auto incrementing column, . This will be used as the primary key for the column.
- Also available is a bigIncrements if you
+ Adds an auto incrementing column, in PostgreSQL this is a serial. This will be used as the primary key for the column. Also available is a bigIncrements if you wish to add a bigint incrementing number (in PostgreSQL bigserial).
@@ -1156,10 +1155,11 @@ knex.schema.table('users', function (table) { Adds an integer column.
-+
integertable.integer(name)
- In MySQL, adds a bigint column, otherwise adds a normal integer.
+ In MySQL or PostgreSQL, adds a bigint column,
+ otherwise adds a normal integer.
@@ -1473,6 +1473,7 @@ process.stderr.on('data', function() {
Create the column definition for a integer type.