2016-12-18

I am forward engineering on MySQL and I get a 1064 Error.
I think I need to include proper syntax between the parenthesis per the comments on MySQL help forward engineering but I'm not sure what to put in-between the parenthesis.
I have found this:
https://dev.mysql.com/doc/refman/5.5/en/create-table.html. However, I am still not sure what to include.
Question: what is the proper syntax to put within the parenthesis?

{Executing SQL script in server
ERROR: Error 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')
ENGINE = InnoDB' at line 2
SQL Code:
CREATE TABLE IF NOT EXISTS mydb.table1 (
)
ENGINE = InnoDB

Fetching back view definitions in final form.
Could not get definition for mydb.view1 from server
1 views were read back}

Show more