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

(-)a/Koha/Schema/Result/CourseItem.pm (-3 / +66 lines)
Lines 41-52 __PACKAGE__->table("course_items"); Link Here
41
  is_nullable: 1
41
  is_nullable: 1
42
  size: 10
42
  size: 10
43
43
44
=head2 itype_enabled
45
46
  data_type: 'tinyint'
47
  default_value: 0
48
  is_nullable: 0
49
50
=head2 itype_storage
51
52
  data_type: 'varchar'
53
  is_nullable: 1
54
  size: 10
55
44
=head2 ccode
56
=head2 ccode
45
57
46
  data_type: 'varchar'
58
  data_type: 'varchar'
47
  is_nullable: 1
59
  is_nullable: 1
48
  size: 80
60
  size: 80
49
61
62
=head2 ccode_enabled
63
64
  data_type: 'tinyint'
65
  default_value: 0
66
  is_nullable: 0
67
68
=head2 ccode_storage
69
70
  data_type: 'varchar'
71
  is_nullable: 1
72
  size: 80
73
50
=head2 holdingbranch
74
=head2 holdingbranch
51
75
52
  data_type: 'varchar'
76
  data_type: 'varchar'
Lines 54-65 __PACKAGE__->table("course_items"); Link Here
54
  is_nullable: 1
78
  is_nullable: 1
55
  size: 10
79
  size: 10
56
80
81
=head2 holdingbranch_enabled
82
83
  data_type: 'tinyint'
84
  default_value: 0
85
  is_nullable: 0
86
87
=head2 holdingbranch_storage
88
89
  data_type: 'varchar'
90
  is_nullable: 1
91
  size: 10
92
57
=head2 location
93
=head2 location
58
94
59
  data_type: 'varchar'
95
  data_type: 'varchar'
60
  is_nullable: 1
96
  is_nullable: 1
61
  size: 80
97
  size: 80
62
98
99
=head2 location_enabled
100
101
  data_type: 'tinyint'
102
  default_value: 0
103
  is_nullable: 0
104
105
=head2 location_storage
106
107
  data_type: 'varchar'
108
  is_nullable: 1
109
  size: 80
110
63
=head2 enabled
111
=head2 enabled
64
112
65
  data_type: 'enum'
113
  data_type: 'enum'
Lines 83-94 __PACKAGE__->add_columns( Link Here
83
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
131
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
84
  "itype",
132
  "itype",
85
  { data_type => "varchar", is_nullable => 1, size => 10 },
133
  { data_type => "varchar", is_nullable => 1, size => 10 },
134
  "itype_enabled",
135
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
136
  "itype_storage",
137
  { data_type => "varchar", is_nullable => 1, size => 10 },
86
  "ccode",
138
  "ccode",
87
  { data_type => "varchar", is_nullable => 1, size => 80 },
139
  { data_type => "varchar", is_nullable => 1, size => 80 },
140
  "ccode_enabled",
141
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
142
  "ccode_storage",
143
  { data_type => "varchar", is_nullable => 1, size => 80 },
88
  "holdingbranch",
144
  "holdingbranch",
89
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
145
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
146
  "holdingbranch_enabled",
147
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
148
  "holdingbranch_storage",
149
  { data_type => "varchar", is_nullable => 1, size => 10 },
90
  "location",
150
  "location",
91
  { data_type => "varchar", is_nullable => 1, size => 80 },
151
  { data_type => "varchar", is_nullable => 1, size => 80 },
152
  "location_enabled",
153
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
154
  "location_storage",
155
  { data_type => "varchar", is_nullable => 1, size => 80 },
92
  "enabled",
156
  "enabled",
93
  {
157
  {
94
    data_type => "enum",
158
    data_type => "enum",
Lines 184-191 __PACKAGE__->belongs_to( Link Here
184
);
248
);
185
249
186
250
187
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-26 16:15:09
251
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-19 16:07:13
188
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0hBp2R7AMxgHLLZcG/676w
252
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8tTH0fAzewvaXRYs8+VZcg
189
253
190
254
191
# You can replace this text with custom content, and it will be preserved on regeneration
255
# You can replace this text with custom content, and it will be preserved on regeneration
192
- 

Return to bug 23727