develop #26

Merged
vex merged 48 commits from develop into main 2025-04-21 15:14:19 +00:00
Showing only changes of commit 97a1ac4744 - Show all commits

View File

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