You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provide a clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Currently and by default, Django uses SQLite to keep a database which is also just file based. The most preferred and robust system for Django is PostgreSQL.
Describe the solution you'd like
Please provide a clear and concise description of what you want to happen.
Change values in settings.py to switch to PostgreSQL.
Describe alternatives you've considered
Please provide a clear and concise description of any alternative solutions or features you've considered.
Other databases like MySQL, MongoDB, etc.
The text was updated successfully, but these errors were encountered:
This would be best to implement once the models themselves are also in place since it's easier to reset database with SQLite (just by deleting db.sqlite3). With that said, that also means to avoid using PostgreSQL special fields like ArrayField and just ManyToMany or ManyToOne.
Is your feature request related to a problem?
Provide a clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Currently and by default, Django uses SQLite to keep a database which is also just file based. The most preferred and robust system for Django is PostgreSQL.
Describe the solution you'd like
Please provide a clear and concise description of what you want to happen.
Change values in
settings.py
to switch to PostgreSQL.Describe alternatives you've considered
Please provide a clear and concise description of any alternative solutions or features you've considered.
Other databases like MySQL, MongoDB, etc.
The text was updated successfully, but these errors were encountered: