Explorecraft_Logolcicusz_Kn.../init.sql
LogolicusZ 2065e06e4d Changes:
- Added Justfile and added Build
- Added init.sql, docker compose and Dockerfile from other Repo
- Created Docker-compose.build file
- updated Css
2024-04-05 11:39:54 +02:00

7 lines
169 B
SQL

CREATE DATABASE IF NOT EXISTS picture_db;
USE picture_db;
CREATE TABLE IF NOT EXISTS pictures (
id INT AUTO_INCREMENT PRIMARY KEY,
url VARCHAR(255) NOT NULL
);