Fix file permissions: if it is not a script, it should not be executable.
[koha.git] / installer / data / mysql / ru-RU / authorised_values / authorised_values_[SUPPRESS].sql
1 DELETE FROM authorised_values WHERE category='SUPPRESS';
2
3 -- TIP: Sometimes it's easier if you create an authorized value entitled 'SUPPRESS' with two values: 
4 --                0 for don't suppress and 1 for suppress.  
5 -- Linking this authorized value to the 942$n field will make it so that catalogers can pick one of these two values.
6
7 INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES 
8         ('SUPPRESS','0','Не скрывать в ЭК'),
9         ('SUPPRESS','1','Скрывать в ЭК');
10