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

(-)a/Koha/Schema/Result/CourseItem.pm (-3 / +34 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
44
=head2 ccode
50
=head2 ccode
45
51
46
  data_type: 'varchar'
52
  data_type: 'varchar'
47
  is_nullable: 1
53
  is_nullable: 1
48
  size: 80
54
  size: 80
49
55
56
=head2 ccode_enabled
57
58
  data_type: 'tinyint'
59
  default_value: 0
60
  is_nullable: 0
61
50
=head2 holdingbranch
62
=head2 holdingbranch
51
63
52
  data_type: 'varchar'
64
  data_type: 'varchar'
Lines 54-65 __PACKAGE__->table("course_items"); Link Here
54
  is_nullable: 1
66
  is_nullable: 1
55
  size: 10
67
  size: 10
56
68
69
=head2 holdingbranch_enabled
70
71
  data_type: 'tinyint'
72
  default_value: 0
73
  is_nullable: 0
74
57
=head2 location
75
=head2 location
58
76
59
  data_type: 'varchar'
77
  data_type: 'varchar'
60
  is_nullable: 1
78
  is_nullable: 1
61
  size: 80
79
  size: 80
62
80
81
=head2 location_enabled
82
83
  data_type: 'tinyint'
84
  default_value: 0
85
  is_nullable: 0
86
63
=head2 enabled
87
=head2 enabled
64
88
65
  data_type: 'enum'
89
  data_type: 'enum'
Lines 83-94 __PACKAGE__->add_columns( Link Here
83
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
107
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
84
  "itype",
108
  "itype",
85
  { data_type => "varchar", is_nullable => 1, size => 10 },
109
  { data_type => "varchar", is_nullable => 1, size => 10 },
110
  "itype_enabled",
111
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
86
  "ccode",
112
  "ccode",
87
  { data_type => "varchar", is_nullable => 1, size => 80 },
113
  { data_type => "varchar", is_nullable => 1, size => 80 },
114
  "ccode_enabled",
115
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
88
  "holdingbranch",
116
  "holdingbranch",
89
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
117
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
118
  "holdingbranch_enabled",
119
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
90
  "location",
120
  "location",
91
  { data_type => "varchar", is_nullable => 1, size => 80 },
121
  { data_type => "varchar", is_nullable => 1, size => 80 },
122
  "location_enabled",
123
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
92
  "enabled",
124
  "enabled",
93
  {
125
  {
94
    data_type => "enum",
126
    data_type => "enum",
Lines 184-191 __PACKAGE__->belongs_to( Link Here
184
);
216
);
185
217
186
218
187
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-26 16:15:09
219
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-14 13:42:52
188
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0hBp2R7AMxgHLLZcG/676w
220
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XNWwN6NOAQR3eh93UlQCxw
189
221
190
222
191
# You can replace this text with custom content, and it will be preserved on regeneration
223
# You can replace this text with custom content, and it will be preserved on regeneration
192
- 

Return to bug 23727