diff --git a/migrations/InsertData.sql b/migrations/InsertData.sql new file mode 100644 index 0000000..2451a5f --- /dev/null +++ b/migrations/InsertData.sql @@ -0,0 +1,22 @@ +INSERT INTO Person (Name) + VALUES ("Gabe"), + ("Michael"); + +INSERT INTO Excercise (Name) + VALUES ("Squat"), + ("Bench"), + ("Deadlift"), + ("Hotep"), + ("Lat Pulldown"); + +INSERT INTO Workout (PersonId, StartDate) + VALUES (1, "2022-06-29 00:00:00.000"), + (1, "2022-07-07 00:00:00.000"), + (1, "2022-07-12 00:00:00.000"); + +INSERT INTO TopSet (WorkoutId, ExcerciseId, Repetitions, Weight) + VALUES (1, 2, 11, 40), + (2, 1, 5, 65), + (2, 4, 6, 30), + (3, 2, 4, 60), + (3, 3, 9, 100); \ No newline at end of file diff --git a/workout.db b/workout.db index 9d2d050..9d64e18 100644 Binary files a/workout.db and b/workout.db differ