File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -197,9 +197,19 @@ Here's how you can set it up:
197
197
docker compose up -d --build
198
198
```
199
199
200
- 4 . ** Run Migrations** : Run the migrations with the following command:
200
+ 4 . ** Make Migrations and Run ** : Create the migrations with the following command:
201
201
202
202
``` bash
203
+ docker-compose exec web python manage.py makemigrations appointment
204
+ ```
205
+
206
+ or
207
+ ``` bash
208
+ docker compose exec web python manage.py makemigrations appointment
209
+ ```
210
+
211
+ Then, apply the migrations with the following command:
212
+ ``` bash
203
213
docker-compose exec web python manage.py migrate
204
214
```
205
215
Original file line number Diff line number Diff line change 5
5
__package_name__ = "django-appointment"
6
6
__url__ = "https://github.com/adamspd/django-appointment"
7
7
__package_website__ = "https://django-appt.adamspierredavid.com/"
8
- __version__ = "3.3.1 "
8
+ __version__ = "3.3.2 "
9
9
__test_version__ = False
You can’t perform that action at this time.
0 commit comments