Files
news-server/tools/debug-startup.sql
T
2021-12-23 13:57:52 +00:00

5 lines
171 B
SQL

#use this while debugging
CREATE DATABASE IF NOT EXISTS news;
CREATE USER IF NOT EXISTS 'news'@'%' IDENTIFIED BY 'venusaur';
GRANT ALL PRIVILEGES ON news.* TO 'news'@'%';