Horje
delete all migrations django Code Example
delete all migrations django
### Source: https://simpleisbetterthancomplex.com/tutorial/2016/07/26/how-to-reset-migrations.html

# Delete migrations
find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc"  -delete

# Drop database
# (delete db.sqlite3 or see https://stackoverflow.com/questions/34576004/simple-way-to-reset-django-postgresql-database

# Create migrations and generate DB schema
./manage.py makemigrations
./manage.py migrate
how to delete migrations in django
python3 manage.py rm -r name/migrations




Shell

Related
setup laravel project from git Code Example setup laravel project from git Code Example
gensim install conda Code Example gensim install conda Code Example
npm i -D @babel/core @babel/preset-env babel-loader Code Example npm i -D @babel/core @babel/preset-env babel-loader Code Example
composer uninstall Code Example composer uninstall Code Example
install babel command line Code Example install babel command line Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12