chore: ignore db file generated by make_migration

This commit is contained in:
Adrien Lemaire 2019-04-24 12:55:22 +09:00
parent dd9dec0d29
commit 598cf7d79b
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -12,3 +12,4 @@ settings.json
*.py[cod]
.pytest_cache/*
.mypy_cache
.testdb

View file

@ -5,7 +5,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(__file__))
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": "test"
"NAME": ".testdb"
}
}