# Block all direct web access to this folder - schema.sql is imported via
# phpMyAdmin, never fetched over HTTP, so there's no reason it's reachable.

<IfModule mod_authz_core.c>
    Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
    Order allow,deny
    Deny from all
</IfModule>
