I am currently using MySQL for my Rails application. In my database.yml, I have the following:
production:
adapter: mysql2
database: application_name_production
username: root
password: password
host: localhost
I'm wondering, is it ok to connect to the database as user root? Will it be any less secure than using another user other than root?