fix(db): correct dialect import paths and extend bip-users-dao type
- Fix dialect files to use relative paths instead of @types alias - Add 'postgresql' to BIPUsersDAO dbType union Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -46,7 +46,7 @@ export const BIP_USERS_CONFIG = {
|
||||
export class BIPUsersDAO {
|
||||
private mysqlService: MySqlService | null = null
|
||||
private sqlServerService: SqlServerService | null = null
|
||||
private dbType: 'mysql' | 'sqlserver' = 'mysql'
|
||||
private dbType: 'mysql' | 'sqlserver' | 'postgresql' = 'mysql'
|
||||
private configManager: ConfigManager
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user