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

(-)a/installer/data/mysql/en/optional/sample_libraries_holidays.sql (-4 lines)
Lines 1-4 Link Here
1
INSERT INTO `repeatable_holidays` VALUES 
2
(2,'MPL',0,NULL,NULL,'','Sundays'),
3
(3,'MPL',NULL,1,1,'','New Year\'s Day'),
4
(4,'MPL',NULL,25,12,'','Christmas');
(-)a/installer/data/mysql/en/optional/sample_libraries_holidays.txt (-1 lines)
Line 1 Link Here
1
Sample holidays: Sunday, Christmas, New Year's
(-)a/installer/data/mysql/en/optional/sample_libraries_holidays.yml (-1 / +51 lines)
Line 0 Link Here
0
- 
1
---
2
#
3
#  Copyright 2020 Koha Development Team
4
#
5
#  This file is part of Koha.
6
#
7
#  Koha is free software; you can redistribute it and/or modify it under the
8
#  terms of the GNU General Public License as published by the Free Software
9
#  Foundation; either version 2 of the License, or (at your option) any later
10
#  version.
11
#
12
#  Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13
#  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
#  A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
#
16
#  You should have received a copy of the GNU General Public License along
17
#  with Koha; if not, write to the Free Software Foundation, Inc.,
18
#  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
#
20
21
description:
22
  - "Sample holidays: Sunday, Christmas, New Year's"
23
24
tables:
25
  - repeatable_holidays:
26
      translatable: [ description ]
27
      multiline: []
28
      rows:
29
        - id: 2
30
          branchcode: MPL
31
          weekday: 0
32
          day: ~
33
          month: ~
34
          title: ""
35
          description: "Sundays"
36
37
        - id: 3
38
          branchcode: MPL
39
          weekday: ~
40
          day: 1
41
          month: 1
42
          title: ""
43
          description: "New Year's Day"
44
45
        - id: 4
46
          branchcode: MPL
47
          weekday: ~
48
          day: 25
49
          month: 12
50
          title: ""
51
          description: "Christmas"

Return to bug 24584