fixed create DB script to actually create a database

This commit is contained in:
Fabian 2025-04-14 19:22:40 +02:00 committed by vextv
parent 1e0aea7fd5
commit 97a1ac4744

View File

@ -1,3 +1,7 @@
CREATE DATABASE IF NOT EXISTS `webshop`
CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `webshop`;
CREATE TABLE `discount` CREATE TABLE `discount`
( (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,