Skip to content

Commit 385a59c

Browse files
committed
update migrations command to deploy all seeds
1 parent cb80ef2 commit 385a59c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ migrate:
2424
docker exec -it game-on-apache bin/cake migrations migrate
2525
docker exec -it game-on-apache bin/cake migrations seed --seed UsersSeed
2626
docker exec -it game-on-apache bin/cake migrations seed --seed EventsSeed
27-
# docker exec -it game-on-apache bin/cake migrations seed --seed BookingsSeed
27+
docker exec -it game-on-apache bin/cake migrations seed --seed AttendeesSeed
28+
docker exec -it game-on-apache bin/cake migrations seed --seed BookingsSeed
2829

2930
clear-cache:
3031
docker exec -it game-on-apache bin/cake cache clear_all

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Before you begin, ensure you have Docker Desktop installed and running/open. All
1212
```
1313
make build-docker
1414
```
15-
Go to phpMyAdmin @ [localhost:8082](http://localhost:8082/) and create a database called `game_on`.
15+
Go to phpMyAdmin @ [localhost:8082](http://localhost:8082/) and create a database called `game_on` and `game_on_test`.
1616

1717
```
1818
make build-app

0 commit comments

Comments
 (0)