Index: backend/src/main/java/medora/config/AuthorizationInterceptor.java
===================================================================
--- backend/src/main/java/medora/config/AuthorizationInterceptor.java	(revision e1f74f6c04f9d460135de378f659fedfd9c74b44)
+++ backend/src/main/java/medora/config/AuthorizationInterceptor.java	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -18,4 +18,8 @@
  */
 @Component
+
+
+
+
 public class AuthorizationInterceptor implements HandlerInterceptor {
 
Index: backend/src/main/resources/application.properties
===================================================================
--- backend/src/main/resources/application.properties	(revision e1f74f6c04f9d460135de378f659fedfd9c74b44)
+++ backend/src/main/resources/application.properties	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -6,7 +6,11 @@
 
 spring.datasource.url=jdbc:postgresql://localhost:5432/medora
-spring.datasource.username=postgres
+spring.datasource.username=medora_app
 spring.datasource.password=postgres
 spring.datasource.driver-class-name=org.postgresql.Driver
+
+# JWT Configuration
+jwt.secret=${JWT_SECRET}
+jwt.expiration=86400000
 
 # JPA / Hibernate settings
@@ -19,2 +23,3 @@
 spring.jackson.serialization.fail-on-empty-beans=false
 spring.jackson.default-property-inclusion=non_null
+
Index: backend/src/main/resources/db.migration/V1.2__Create_Users_Table.sql
===================================================================
--- backend/src/main/resources/db.migration/V1.2__Create_Users_Table.sql	(revision e1f74f6c04f9d460135de378f659fedfd9c74b44)
+++ backend/src/main/resources/db.migration/V1.2__Create_Users_Table.sql	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -1,2 +1,3 @@
+user
 -- Create users table
 CREATE TABLE IF NOT EXISTS users (
