Develop #1

Merged
Aeen merged 12 commits from develop into main 2026-07-30 10:15:05 +00:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 05ab2a497a - Show all commits
-1
View File
@@ -1,6 +1,5 @@
CREATE TABLE users( CREATE TABLE users(
id SERIAL PRIMARY KEY, id SERIAL PRIMARY KEY,
username VARCHAR(50) NOT NULL UNIQUE, username VARCHAR(50) NOT NULL UNIQUE,
@@ -6,7 +6,7 @@ import java.sql.SQLException;
public class DatabaseConnection { public class DatabaseConnection {
private static final String URL = "jdbc:postgresql://localhost:5432/restaurant_db"; // DB Server private static final String URL = "jdbc:postgresql://localhost:5432/postgres"; // DB Server
private static final String USER = "postgres"; // Your Username private static final String USER = "postgres"; // Your Username