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

(-)a/Koha/Schema/Result/ProblemReport.pm (-8 / +6 lines)
Lines 66-74 __PACKAGE__->table("problem_reports"); Link Here
66
66
67
=head2 problempage
67
=head2 problempage
68
68
69
  data_type: 'varchar'
69
  data_type: 'text'
70
  is_nullable: 1
70
  is_nullable: 1
71
  size: 255
72
71
73
=head2 recipient
72
=head2 recipient
74
73
Lines 87-93 __PACKAGE__->table("problem_reports"); Link Here
87
=head2 status
86
=head2 status
88
87
89
  data_type: 'varchar'
88
  data_type: 'varchar'
90
  default_value: 'NEW'
89
  default_value: 'New'
91
  is_nullable: 0
90
  is_nullable: 0
92
  size: 6
91
  size: 6
93
92
Lines 118-124 __PACKAGE__->add_columns( Link Here
118
  "username",
117
  "username",
119
  { data_type => "varchar", is_nullable => 1, size => 75 },
118
  { data_type => "varchar", is_nullable => 1, size => 75 },
120
  "problempage",
119
  "problempage",
121
  { data_type => "varchar", is_nullable => 1, size => 255 },
120
  { data_type => "text", is_nullable => 1 },
122
  "recipient",
121
  "recipient",
123
  {
122
  {
124
    data_type => "enum",
123
    data_type => "enum",
Lines 134-140 __PACKAGE__->add_columns( Link Here
134
    is_nullable => 0,
133
    is_nullable => 0,
135
  },
134
  },
136
  "status",
135
  "status",
137
  { data_type => "varchar", default_value => "NEW", is_nullable => 0, size => 6 },
136
  { data_type => "varchar", default_value => "New", is_nullable => 0, size => 6 },
138
);
137
);
139
138
140
=head1 PRIMARY KEY
139
=head1 PRIMARY KEY
Lines 182-189 __PACKAGE__->belongs_to( Link Here
182
);
181
);
183
182
184
183
185
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2020-03-18 22:36:43
184
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-03 12:13:26
186
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XQn+sJwh4s+EK9vf2gQ7Qw
185
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ho9ENAxH51/ZlZO9KD4KOQ
187
186
188
187
189
# You can replace this text with custom code or comments, and it will be preserved on regeneration
188
# You can replace this text with custom code or comments, and it will be preserved on regeneration
190
- 

Return to bug 4461