View | Details | Raw Unified | Return to bug 28844
Collapse All | Expand All

(-)a/Koha/Schema/Result/Aqorder.pm (-1 / +12 lines)
Lines 902-907 __PACKAGE__->belongs_to( Link Here
902
  },
902
  },
903
);
903
);
904
904
905
__PACKAGE__->belongs_to(
906
  "suggestion",
907
  "Koha::Schema::Result::Suggestion",
908
  { "foreign.suggestionid" => "self.suggestionid" },
909
  {
910
    is_deferrable => 1,
911
    join_type     => "LEFT",
912
    on_delete     => "CASCADE",
913
    on_update     => "CASCADE",
914
  },
915
);
916
905
sub koha_objects_class {
917
sub koha_objects_class {
906
    'Koha::Acquisition::Orders';
918
    'Koha::Acquisition::Orders';
907
}
919
}
908
- 

Return to bug 28844