From c081c62b65bc9619968323a063b85095404a0032 Mon Sep 17 00:00:00 2001 From: gabriel Date: Sun, 23 Mar 2025 02:34:16 +0100 Subject: [PATCH] working --- .env | 2 +- supabase/migrations/20250323010544_autumn_butterfly.sql | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.env b/.env index 8cb944b..0ebbd07 100644 --- a/.env +++ b/.env @@ -1,6 +1,6 @@ DB_HOST=172.10.1.4 DB_USER=prox DB_PASSWORD=2104 -DB_NAME=2104 +DB_NAME=prox PORT=3006 VITE_API_URL=http://localhost:3006/api \ No newline at end of file diff --git a/supabase/migrations/20250323010544_autumn_butterfly.sql b/supabase/migrations/20250323010544_autumn_butterfly.sql index 6dfeb5f..d83b76e 100644 --- a/supabase/migrations/20250323010544_autumn_butterfly.sql +++ b/supabase/migrations/20250323010544_autumn_butterfly.sql @@ -1,6 +1,6 @@ -- Create the database if it doesn't exist -CREATE DATABASE IF NOT EXISTS proxmox_dashboard; -USE proxmox_dashboard; +CREATE DATABASE IF NOT EXISTS prox; +USE prox; -- Create servers table CREATE TABLE IF NOT EXISTS servers ( @@ -18,12 +18,9 @@ CREATE TABLE IF NOT EXISTS servers ( INDEX idx_name (name) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Create a user for the application (if not exists) -CREATE USER IF NOT EXISTS 'proxmox_user'@'localhost' IDENTIFIED BY 'proxmox_password'; -- Grant privileges to the application user -GRANT ALL PRIVILEGES ON proxmox_dashboard.* TO 'proxmox_user'@'localhost'; -FLUSH PRIVILEGES; + -- Add some sample data (optional) INSERT INTO servers (