Holidays 2023 in PL
parent
8841df2b6b
commit
f1e5fa728c
24
README.md
24
README.md
|
@ -13,6 +13,30 @@ A simple application to manage attendance lists
|
||||||
1. Add whole timeframes in one click
|
1. Add whole timeframes in one click
|
||||||
1. Counting days of remote work
|
1. Counting days of remote work
|
||||||
|
|
||||||
|
## db.sql
|
||||||
|
Holidays that occur in Poland are added to the db.sql file. If you want to replace it with your country, edit it as follows: (lines form **77**)
|
||||||
|
```sql
|
||||||
|
INSERT INTO
|
||||||
|
`dniwolne` (`id`, `data`, `nazwaSwieta`, `aktywne`)
|
||||||
|
VALUES
|
||||||
|
(
|
||||||
|
'YYYY-MM-DD',
|
||||||
|
'Event 1',
|
||||||
|
1
|
||||||
|
),
|
||||||
|
(
|
||||||
|
'YYYY-MM-DD',
|
||||||
|
'Event 2',
|
||||||
|
1
|
||||||
|
),
|
||||||
|
...
|
||||||
|
(
|
||||||
|
'YYYY-MM-DD',
|
||||||
|
'Event N',
|
||||||
|
1
|
||||||
|
);
|
||||||
|
```
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
## Licence
|
## Licence
|
||||||
|
|
20
db.sql
20
db.sql
|
@ -78,9 +78,23 @@ INSERT INTO
|
||||||
`dniwolne` (`id`, `data`, `nazwaSwieta`, `aktywne`)
|
`dniwolne` (`id`, `data`, `nazwaSwieta`, `aktywne`)
|
||||||
VALUES
|
VALUES
|
||||||
(
|
(
|
||||||
1,
|
'2023-11-05',
|
||||||
'2023-08-15',
|
'Wszystkich Świętych',
|
||||||
'Wniebowzięcie Najświętszej Maryi Panny',
|
1
|
||||||
|
),
|
||||||
|
(
|
||||||
|
'2023-11-11',
|
||||||
|
'Narodowe Święto Niepodległości',
|
||||||
|
1
|
||||||
|
),
|
||||||
|
(
|
||||||
|
'2023-12-25',
|
||||||
|
'pierwszy dzień Bożego Narodzenia',
|
||||||
|
1
|
||||||
|
),
|
||||||
|
(
|
||||||
|
'2023-12-26',
|
||||||
|
'drugi dzień Bożego Narodzenia',
|
||||||
1
|
1
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue