File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -686,9 +686,6 @@ function util_convert_flatdictfromdb_to_structuredrenameddict(
686686 if haskey (flatdict, col_symbol) && ! ismissing (flatdict[col_symbol])
687687 sub_flatdict[col_in_referenced_table_symbol] = flatdict[col_symbol]
688688 else
689- if col == " organization_id"
690- @warn " Missing organization_id in flatdict for property $propname " flatdict
691- end
692689 all_cols_found = false
693690 push! (missing_cols,col_symbol)
694691 all_cols_found = false
@@ -1039,8 +1036,8 @@ function util_get_columns_mapping_to_referenced_tables(orm_module::Module)
10391036 if isdefined (orm_module,:get_columns_mapping_to_referenced_tables )
10401037 return orm_module. get_columns_mapping_to_referenced_tables ()
10411038 # This is support for the legacy way of declaring the id properties
1042- elseif isdefined (orm_module,:columns_selection_and_mapping )
1043- return orm_module. columns_selection_and_mapping
1039+ elseif isdefined (orm_module,:columns_mapping_to_referenced_tables )
1040+ return orm_module. columns_mapping_to_referenced_tables
10441041 else
10451042 error (" orm_module[$orm_module ] is missing 'get_columns_mapping_to_referenced_tables'" )
10461043 end
You can’t perform that action at this time.
0 commit comments