2016-03-29 12:02:06 +02:00

6 lines
263 B
Plaintext
Executable File

// 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").
table.increments()