Function: serial() 
serial():
PgSerial
Unique identifier column.
Returns 
Remarks 
Not a true native PostgreSQL data type. A serial column is a column that has:
- an 
integerdata type. - default values assigned from a sequence generator.
 - a 
NOT NULLconstraint. 
Kysely database schema type definition
ts
{
  readonly __select__: number;
  readonly __insert__: number | string | undefined;
  readonly __update__: number | string;
};Zod Schema
Types:
ts
{
  input?: number | string | undefined;
  output?: number | undefined;
}Validations:
- Explicit 
undefinedvalues are rejected. - Value must be a valid 
number. - Value cannot be lower than -2147483648.
 - Value cannot be greater than 2147483647.
 
Example 
ts
import { schema, serial, table  } from "monolayer/pg";
import { zodSchema } from "monolayer/zod";
const dbSchema = schema({
  tables: {
    example: table({
      columns: {
        id: serial(),
      },
    }),
  },
});
// Kysely database schema type
type DB = typeof dbSchema.infer;
// Zod Schema
const schema = zodSchema(database.tables.example);See 
PostgreSQL Docs: serial