first commit
This commit is contained in:
12
shared/models/featureModels/dbConnModels.ts
Normal file
12
shared/models/featureModels/dbConnModels.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export enum DBConnectionProvider {
|
||||
Postgres = "postgres",
|
||||
}
|
||||
|
||||
export interface DBConnection {
|
||||
id: string;
|
||||
org_id: string;
|
||||
provider: DBConnectionProvider;
|
||||
display_name: string;
|
||||
connection_string: string;
|
||||
created_at: number;
|
||||
}
|
||||
Reference in New Issue
Block a user