
- Updated package.json to use PostgreSQL dependencies (pg, @types/pg)
- Removed SQLite dependency
- Updated TypeORM configuration for PostgreSQL connection
- Modified database entities to use PostgreSQL-compatible column types (jsonb, timestamp)
- Created comprehensive database migration script for initial schema
- Updated environment configuration with PostgreSQL variables
- Updated README with PostgreSQL setup instructions and database migration steps
- Ensured storage directories are properly configured
🤖 Generated with BackendIM
Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
579 B
JavaScript
21 lines
579 B
JavaScript
// ESM wrapper for pg
|
|
import pg from '../lib/index.js'
|
|
|
|
// Re-export all the properties
|
|
export const Client = pg.Client
|
|
export const Pool = pg.Pool
|
|
export const Connection = pg.Connection
|
|
export const types = pg.types
|
|
export const Query = pg.Query
|
|
export const DatabaseError = pg.DatabaseError
|
|
export const escapeIdentifier = pg.escapeIdentifier
|
|
export const escapeLiteral = pg.escapeLiteral
|
|
export const Result = pg.Result
|
|
export const TypeOverrides = pg.TypeOverrides
|
|
|
|
// Also export the defaults
|
|
export const defaults = pg.defaults
|
|
|
|
// Re-export the default
|
|
export default pg
|