#!/bin/sh

db_file=/var/www/baikal/Specific/db/db.sqlite

if ! [ -f "$db_file" ]; then
    touch "$db_file"
    chgrp www-data "$db_file"
fi

exit 0
