Re: Testing Unmanaged Models - Using the SchemaEditor to create db tables

2024-02-12 Thread Emmanuel Katchy
you for sharing, and welcome to the Django community! > > On Sun, Jan 28, 2024, at 11:00 PM, Emmanuel Katchy wrote: > > Hi everyone! > > I'd like to get your thoughts on something. > > Unmanaged models mean that Django no longer handles creating and managing > sche

Testing Unmanaged Models - Using the SchemaEditor to create db tables

2024-01-28 Thread Emmanuel Katchy
Hi everyone! I'd like to get your thoughts on something. Unmanaged models mean that Django no longer handles creating and managing schema at the database level (hence the name). When running tests, this means these tables aren't created, and we can't run queries against that model. The general