From 11abc5e32c7d09c9ff46e8633cf22c9df0879742 Mon Sep 17 00:00:00 2001 From: Haoyu Sun <sunh26@cardiff.ac.uk> Date: Mon, 17 Feb 2025 17:39:52 +0000 Subject: [PATCH] add database --- src/main/resources/schema.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/schema.sql b/src/main/resources/schema.sql index 1aae39a..9fb6f36 100644 --- a/src/main/resources/schema.sql +++ b/src/main/resources/schema.sql @@ -1,3 +1,5 @@ +CREATE DATABASE IF NOT EXISTS sports; +USE sports; drop table if exists match_item; drop table if exists ranking; drop table if exists information; -- GitLab