Show
Ignore:
Timestamp:
03/14/12 17:13:14 (14 months ago)
Author:
peter
Message:

comment GRANT-statements in pgsql dnssec schema as they do not apply equally for every user

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pdns/pdns/dnssec.schema.pgsql.sql

    r2400 r2493  
    2323 
    2424 
    25 GRANT ALL ON domainmetadata TO pdns; 
    26 GRANT ALL ON domainmetadata_id_seq TO pdns; 
    27 GRANT ALL ON cryptokeys TO pdns; 
    28 GRANT ALL ON cryptokeys_id_seq TO pdns; 
     25-- GRANT ALL ON domainmetadata TO pdns; 
     26-- GRANT ALL ON domainmetadata_id_seq TO pdns; 
     27-- GRANT ALL ON cryptokeys TO pdns; 
     28-- GRANT ALL ON cryptokeys_id_seq TO pdns; 
    2929 
    3030create table tsigkeys ( 
     
    3737create unique index namealgoindex on tsigkeys(name, algorithm); 
    3838 
    39 GRANT ALL ON tsigkeys TO pdns; 
    40 GRANT ALL ON tsigkeys_id_seq TO pdns; 
     39-- GRANT ALL ON tsigkeys TO pdns; 
     40-- GRANT ALL ON tsigkeys_id_seq TO pdns; 
    4141alter table records alter column type type VARCHAR(10);