web_AI-3/sql/remove_db.sql

9 lines
158 B
SQL

-- Removes the DB and its user
--
-- Author: Andreas Zweili
-- 2017-02-03
-- MariaDB 10.0.27
drop database if exists webshopdb;
drop user webshop@localhost;