We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ec21f7 commit e5c7c98Copy full SHA for e5c7c98
1 file changed
django.qmd
@@ -131,12 +131,20 @@ Then, add app to the `Installed_Apps` section of `settings.py`:
131
132
- holds files for migrating the database as we create and change the database schema over time
133
134
+# Remove Migrations
135
+
136
+```{python}
137
+#| eval: false
138
139
+python3 manage.py migrate zero # can insert appname before 'zero'
140
+```
141
142
# Update Migrations
143
144
```{python}
145
#| eval: false
146
-python3 manage.py makemigrations
147
+python3 manage.py makemigrations # can insert appname after 'makemigrations'
148
python3 manage.py migrate
149
```
150
0 commit comments