Fix jwt-token

This commit is contained in:
2025-08-17 09:23:27 +02:00
parent d23d2dbbce
commit c7cef98aeb

View File

@@ -10,8 +10,8 @@ SET timezone = 'Europe/Stockholm';
-- Create indexes for better performance -- Create indexes for better performance
-- (These will be created by Sequelize, but we can optimize here) -- (These will be created by Sequelize, but we can optimize here)
-- Log successful initialization
INSERT INTO pg_stat_statements_info (dealloc) VALUES (0) ON CONFLICT DO NOTHING;
-- Grant necessary permissions -- Grant necessary permissions
GRANT ALL PRIVILEGES ON DATABASE drone_detection TO postgres; GRANT ALL PRIVILEGES ON DATABASE drone_detection TO postgres;
-- Log successful initialization
SELECT 'Database initialized successfully' as status;