web_AI-3/sql/remove_db.sql

9 lines
158 B
MySQL
Raw Permalink Normal View History

2017-02-03 17:37:36 +01:00
-- 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;