DittoDB: support `postgresql:` protocol
This commit is contained in:
parent
aeaa236518
commit
0ddb1782e5
|
@ -12,6 +12,7 @@ export class DittoDB {
|
|||
case 'sqlite:':
|
||||
return DittoSQLite.getInstance();
|
||||
case 'postgres:':
|
||||
case 'postgresql:':
|
||||
return DittoPostgres.getInstance();
|
||||
default:
|
||||
throw new Error('Unsupported database URL.');
|
||||
|
|
Loading…
Reference in New Issue