Skip to content

remix/data-table/postgres · Interface

View Source

PostgresDatabaseOptions

Summary

Options for creating a PostgreSQL database.

Signature

interface PostgresDatabaseOptions {
  maintenanceDatabase?: string
  now?: () => unknown
  template?: string
}

Properties

maintenanceDatabase

Database used while dropping and recreating the configured database (postgres by default).

now

Clock function used for auto-managed timestamps.

template

Template used to recreate the configured database (template0 by default).