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

(-)a/Koha/Schema/Result/Virtualshelve.pm (-15 / +6 lines)
Lines 67-85 __PACKAGE__->table("virtualshelves"); Link Here
67
  datetime_undef_if_invalid: 1
67
  datetime_undef_if_invalid: 1
68
  is_nullable: 0
68
  is_nullable: 0
69
69
70
=head2 allow_add
70
=head2 allow_change_from_owner
71
72
  data_type: 'tinyint'
73
  default_value: 0
74
  is_nullable: 1
75
76
=head2 allow_delete_own
77
71
78
  data_type: 'tinyint'
72
  data_type: 'tinyint'
79
  default_value: 1
73
  default_value: 1
80
  is_nullable: 1
74
  is_nullable: 1
81
75
82
=head2 allow_delete_other
76
=head2 allow_change_from_others
83
77
84
  data_type: 'tinyint'
78
  data_type: 'tinyint'
85
  default_value: 0
79
  default_value: 0
Lines 116-126 __PACKAGE__->add_columns( Link Here
116
    datetime_undef_if_invalid => 1,
110
    datetime_undef_if_invalid => 1,
117
    is_nullable => 0,
111
    is_nullable => 0,
118
  },
112
  },
119
  "allow_add",
113
  "allow_change_from_owner",
120
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
121
  "allow_delete_own",
122
  { data_type => "tinyint", default_value => 1, is_nullable => 1 },
114
  { data_type => "tinyint", default_value => 1, is_nullable => 1 },
123
  "allow_delete_other",
115
  "allow_change_from_others",
124
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
116
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
125
);
117
);
126
118
Lines 189-196 __PACKAGE__->has_many( Link Here
189
);
181
);
190
182
191
183
192
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-09-06 09:35:37
184
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-08 14:19:17
193
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wfAdz7LrmH49vdJ3f5rsmA
185
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Xoq0lhLouCbkAp6F4ZyMGQ
194
186
195
187
196
# You can replace this text with custom content, and it will be preserved on regeneration
188
# You can replace this text with custom content, and it will be preserved on regeneration
197
- 

Return to bug 18228