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

(-)a/Koha/Schema/Result/OverduerulesTransportType.pm (-3 / +10 lines)
Lines 29-34 __PACKAGE__->table("overduerules_transport_types"); Link Here
29
  is_auto_increment: 1
29
  is_auto_increment: 1
30
  is_nullable: 0
30
  is_nullable: 0
31
31
32
=head2 letternumber
33
34
  data_type: 'integer'
35
  default_value: 1
36
  is_nullable: 0
37
32
=head2 message_transport_type
38
=head2 message_transport_type
33
39
34
  data_type: 'varchar'
40
  data_type: 'varchar'
Lines 48-53 __PACKAGE__->table("overduerules_transport_types"); Link Here
48
__PACKAGE__->add_columns(
54
__PACKAGE__->add_columns(
49
  "id",
55
  "id",
50
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
56
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
57
  "letternumber",
58
  { data_type => "integer", default_value => 1, is_nullable => 0 },
51
  "message_transport_type",
59
  "message_transport_type",
52
  {
60
  {
53
    data_type => "varchar",
61
    data_type => "varchar",
Lines 105-112 __PACKAGE__->belongs_to( Link Here
105
);
113
);
106
114
107
115
108
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-06 12:00:28
116
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-21 15:26:12
109
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KYpSfCfzkLxRYI2pQY5Htg
117
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PBTwIhjc4ypkZxaevkJoxw
110
118
111
119
112
# You can replace this text with custom code or comments, and it will be preserved on regeneration
120
# You can replace this text with custom code or comments, and it will be preserved on regeneration
113
- 

Return to bug 16007