I think in the past mysql/db_setup.sql had the code that created all the tables. It seems that only the database is created now. Where do I find the sql statement to create the tables manually?
Thanks
-bash-3.2# cat /opt/Alfresco/extras/databases/mysql/db_setup.sql create database alfresco default character set utf8; grant all on alfresco.* to 'alfresco'@'localhost' identified by 'alfresco' with grant option; grant all on alfresco.* to 'alfresco'@'localhost.localdomain' identified by 'alfresco' with grant option;-bash-3.2#