File tree Expand file tree Collapse file tree
apps/deditor/src/renderer/src/components/datasource
packages/shared/src/types/ipc/databases Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ const tables = computedAsync(async () => {
3636 return (
3737 await datasourceSessionsStore
3838 .listTablesByParameters (datasource .value .driver , datasource .value as ConnectionThroughParameters ))
39- .map <DatasourceTable >(t => ({ schema: t .table_schema , table: t .table_name }))
39+ .map <DatasourceTable >(t => ({ schema: t .schema , table: t .tableName }))
4040 .filter (filterPgTables )
4141 }
4242 catch (e ) {
Original file line number Diff line number Diff line change @@ -75,13 +75,13 @@ export interface PostgresMethods {
7575 } ) => {
7676 databaseSessionId : string
7777 results : {
78- schemaName : string | null ;
79- objName : string ;
80- columnName : string ;
81- dataType : string ;
82- ordinalPosition : number ;
83- isRequired : boolean ;
84- description : string ;
78+ schemaName : string | null
79+ objName : string
80+ columnName : string
81+ dataType : string
82+ ordinalPosition : number
83+ isRequired : boolean
84+ description : string
8585 } [ ]
8686 }
8787}
You can’t perform that action at this time.
0 commit comments