diff --git a/server/scripts/init-db.sql b/server/scripts/init-db.sql index 473fbf5..c9d19eb 100644 --- a/server/scripts/init-db.sql +++ b/server/scripts/init-db.sql @@ -10,8 +10,8 @@ SET timezone = 'Europe/Stockholm'; -- Create indexes for better performance -- (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 ALL PRIVILEGES ON DATABASE drone_detection TO postgres; + +-- Log successful initialization +SELECT 'Database initialized successfully' as status;