Verify that the migration worked
Let's make sure everything was created correctly. Select the database:
sql
USE library_db;
sql
SHOW TABLES;
text
borrow
books
students
Check the students
sql
SELECT * FROM students;
Check the books
sql
SELECT * FROM books;
Check the borrowing records
sql
SELECT * FROM borrow;
Checkpoint
If all three tables contain the expected records, your migration has been successfully applied.
Sign in to save your progress permanently.
Progress is saved in your browser session
Step 13 of 19