mirror of
https://github.com/bronson-g/baseball-api.git
synced 2026-01-03 17:27:44 -05:00
13 lines
404 B
Markdown
13 lines
404 B
Markdown
# How to use these files
|
|
|
|
Each `sql` script in this folder needs to be executed using the appropriate database.
|
|
Due to foreign key constraints, a proper order must be followed.
|
|
`_MASTER_.sql` has the proper order, and can be executed like so:
|
|
|
|
```sql
|
|
use baseball;
|
|
source /path/to/_MASTER_.sql;
|
|
```
|
|
|
|
Which will then execute each script in order.
|
|
Then, verify that each statement was successful. |