Hey,
Trying to build the mysql database manually for my mediatomb server,
I just need some pointing in the right direction as far as what my tables should include for the database.

I'm also receiving an error when I try and start mediatomb, mysql_error 1045 access denied for user 'root'@'localhost' the user i created is judmedia
the database judmediatomb and gave the user all permissions.
The judmedia user aswell has no password attached because i thought that was the issue since the mediatomb config doesn't ask for the mysql user password
here is my mediatomb config file:

<?xml version="1.0" encoding="UTF-8"?>
<config version="1" xmlns="http://mediatomb.cc/config/1" xmlnssi="http://www.w3.org/2001/XMLSchem$
<!--
Read /usr/share/doc/mediatomb-common/README.gz section 6 for more
information on creating and using config.xml configration files.
-->
<server>
<ui enabled="yes" show-tooltips="yes">
<accounts enabled="yes" session-timeout="30">
<account user="mediatomb" password="mediatomb"/>
</accounts>
</ui>
<name>Judmedia's MediaTomb</name>
<udn>uuid:6f0e2103-c925-4c8d-9623-7f4df69c2855</udn>
<home>/var/lib/mediatomb</home>
<webroot>/usr/share/mediatomb/web</webroot>
<storage>
<sqlite3 enabled="no">
<database-file>mediatomb.db</database-file>
</sqlite3>
<mysql enabled="yes">
<host>localhost</host>
<username>judmedia</username>
<database>judmediatomb</database>
</mysql>



Thanks in advance!