uploaded base code

This commit is contained in:
2025-03-15 18:28:52 +02:00
parent dd379a6f5c
commit 4066abb255
10 changed files with 302 additions and 0 deletions

10
database/init.sql Normal file
View File

@@ -0,0 +1,10 @@
CREATE DATABASE IF NOT EXISTS storage_db CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
USE storage_db;
CREATE TABLE IF NOT EXISTS storage (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
phone VARCHAR(20) NOT NULL,
location VARCHAR(10) NOT NULL,
bulk BOOLEAN NOT NULL DEFAULT FALSE
);