Reputation: 1958
I have a script file that has a bunch of create commands, and one that has a bunch of inserts. I would like to use these commands to rebuild my database on a different PC but I am struggling with how to accomplish this.
I just installed a fresh copy of MySQL Workbench and I created a new Model. Now what?!
Thanks for the help!
Upvotes: 0
Views: 32
Reputation: 26877
You should be able to rebuild your tables from the script
First, connect to the database
Then, open your script file
Run the query
After that, you should have your tables restored.
Upvotes: 1