add Makefile for sqlite
[platform/upstream/crda.git] / 00-database.sql
1 /* create database */
2
3 create database if not exists regulatory;
4
5 /* add permissions */
6 use regulatory;
7 grant all privileges on regulatory.* to admin@localhost identified by '802.11r';