web_AI-5/sql/04_remove_database.sql
2017-11-12 13:09:56 +01:00

11 lines
246 B
SQL

-- Removes the webshop DB
--
-- Author: Andreas Zweili
-- 2017-11-04
-- MariaDB 10.1.26
drop database if exists webshopdb;
drop database if exists test_webshopdb;
drop database if exists django_migrations;
drop user if exists webshop@localhost;