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

(-)a/Koha/Schema/Result/Serial.pm (-4 / +27 lines)
Lines 50-55 __PACKAGE__->table("serial"); Link Here
50
  is_nullable: 0
50
  is_nullable: 0
51
  size: 100
51
  size: 100
52
52
53
=head2 serialseq_x
54
55
  data_type: 'varchar'
56
  is_nullable: 1
57
  size: 100
58
59
=head2 serialseq_y
60
61
  data_type: 'varchar'
62
  is_nullable: 1
63
  size: 100
64
65
=head2 serialseq_z
66
67
  data_type: 'varchar'
68
  is_nullable: 1
69
  size: 100
70
53
=head2 status
71
=head2 status
54
72
55
  data_type: 'tinyint'
73
  data_type: 'tinyint'
Lines 107-112 __PACKAGE__->add_columns( Link Here
107
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 },
125
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 },
108
  "serialseq",
126
  "serialseq",
109
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 },
127
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 },
128
  "serialseq_x",
129
  { data_type => "varchar", is_nullable => 1, size => 100 },
130
  "serialseq_y",
131
  { data_type => "varchar", is_nullable => 1, size => 100 },
132
  "serialseq_z",
133
  { data_type => "varchar", is_nullable => 1, size => 100 },
110
  "status",
134
  "status",
111
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
135
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
112
  "planneddate",
136
  "planneddate",
Lines 155-163 __PACKAGE__->has_many( Link Here
155
);
179
);
156
180
157
181
158
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-05 10:45:52
182
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-31 11:56:58
159
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cZDEO4olHbgGR1gmn5qgCw
183
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nJ8tcbP/wWWbIic0hSUmBA
160
184
161
185
162
# You can replace this text with custom content, and it will be preserved on regeneration
186
# You can replace this text with custom code or comments, and it will be preserved on regeneration
163
1;
187
1;
164
- 

Return to bug 12375