To explain, I have a database db_Name
. Over the course of development of my program, the parameters of this database has changed through the use of MySQL Workbench. Unfortunately the hard-coded construction of the database in my program has not been kept up to date.
Is there a way that I could return the code for the construction of my database in the latest version?
To explain: I'm looking for this code:
Table_Name_1(Tbl_Id CHAR(25) NOT NULL AUTO_INCREMENT, Field_1 CHAR(25) UNIQUE, Field_2 INT, PRIMARY KEY(Tbl_Id));
Table_Name_2(..........
etc.