Could someone please help sort my configuration out or point me at a MySql example which doesnt use JNDI. I'm getting...
Table 'modeshape.content_store' doesn't exist
...which I assume is because it's not auto creating the schema. I've tried using the modeshape2 property to no avail. Here's my config
{
"name" : "My Repository",
"monitoring" : {
"enabled" : true
},
"workspaces" : {
"default" : "defaultWorkspace",
"allowCreation" : true
},
"storage" : {
"cacheName" : "Teneo Repository",
"binaryStorage" : {
"type" : "database",
"driverClass" : "com.mysql.jdbc.Driver",
"username" : "modeshape",
"password" : "modeshape",
"url" : "jdbc:mysql://127.0.0.1:3306/modeshape?autoReconnect=true",
"autoGenerateSchema" : "create"
}
}
}