Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBrenda Krafft
18,036 PointsCan I put database files on GitHub?
I am working on a project that uses a MySQL Workbench database.
Can I move my .mwb file to GitHub so other people can download it and Import it into Workbench?
Can someone point me to a GitHub project that might be doing something similar?
1 Answer
Edward C. Young
10,323 PointsHere's what I would do:
Upload an empty Schema file to Github, as an SQL Script, and then write another SQL Script that INSERTS all the data into your empty Schema. For an Example of the concept, see: Sakila Sample Database, specifically Section 4 - Installation
Brenda Krafft
18,036 PointsBrenda Krafft
18,036 PointsExcellent! Thank you so much.