I have an error that I can’t seem to figure out. I am new to Grails and I am trying to get tables into my database. I created the database in MySQL. Then I tried to create tables, but when I start the app and click on the tables I get the following error:
/racetrack/race/list
Class org.h2.jdbc.JdbcSQLException
Message Table "RACE" not found;
My DevelopmentDataSource.groovy file is as follows:
class DevelopmentDataSource {
boolean pooling = true
String dbCreate = "update"
String url = "jdbc:mysql://localhost/racetrack_dev"
String driverClassName = "com.mysql.jdbc.Driver"
String username = "ironmantis7x"
String password = "mantismonk07"
}
I checked in MySQL, and the database exists, but it doesn't have any tables. There should be two — race and registration. How do I remedy this? Please let me know what other parts of my Grails app you need to see.

