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

(-)a/Koha/Schema/Result/Aqorder.pm (-1 / +12 lines)
Lines 922-927 __PACKAGE__->belongs_to( Link Here
922
  },
922
  },
923
);
923
);
924
924
925
__PACKAGE__->belongs_to(
926
  "suggestion",
927
  "Koha::Schema::Result::Suggestion",
928
  { "foreign.suggestionid" => "self.suggestionid" },
929
  {
930
    is_deferrable => 1,
931
    join_type     => "LEFT",
932
    on_delete     => "CASCADE",
933
    on_update     => "CASCADE",
934
  },
935
);
936
925
__PACKAGE__->has_many(
937
__PACKAGE__->has_many(
926
  "additional_field_values",
938
  "additional_field_values",
927
  "Koha::Schema::Result::AdditionalFieldValue",
939
  "Koha::Schema::Result::AdditionalFieldValue",
928
- 

Return to bug 28844