<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chango.git/tests/model_options, branch devmain</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/chango.git/atom?h=devmain</id>
<link rel='self' href='http://cgit.adnoto.dev/chango.git/atom?h=devmain'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/'/>
<updated>2025-09-05T14:43:10Z</updated>
<entry>
<title>Fixed #36564 -- Changed DEFAULT_AUTO_FIELD from AutoField to BigAutoField.</title>
<updated>2025-09-05T14:43:10Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2025-08-19T19:08:43Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=2a636118dacdcda074c99ebd50311d64a8cca367'/>
<id>urn:sha1:2a636118dacdcda074c99ebd50311d64a8cca367</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #27236 -- Reverted AlterIndexTogether deprecation.</title>
<updated>2022-07-26T09:41:19Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2022-07-20T05:33:03Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=c773d5794eb425c4836c726bdf6e1e742c94e9c0'/>
<id>urn:sha1:c773d5794eb425c4836c726bdf6e1e742c94e9c0</id>
<content type='text'>
This partly reverts a6385b382e05a614a99e5a5913d8e631823159a2.
</content>
</entry>
<entry>
<title>Fixed #27236 -- Deprecated Meta.index_together in favor of Meta.indexes.</title>
<updated>2022-07-12T07:04:31Z</updated>
<author>
<name>David Wobrock</name>
<email>david.wobrock@gmail.com</email>
</author>
<published>2022-05-17T14:13:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=a6385b382e05a614a99e5a5913d8e631823159a2'/>
<id>urn:sha1:a6385b382e05a614a99e5a5913d8e631823159a2</id>
<content type='text'>
This also deprecates AlterIndexTogether migration operation.
</content>
</entry>
<entry>
<title>Refs #33476 -- Reformatted code with Black.</title>
<updated>2022-02-07T19:37:05Z</updated>
<author>
<name>django-bot</name>
<email>ops@djangoproject.com</email>
</author>
<published>2022-02-03T19:24:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=9c19aff7c7561e3a82978a272ecdaad40dda5c00'/>
<id>urn:sha1:9c19aff7c7561e3a82978a272ecdaad40dda5c00</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #32620 -- Allowed subclasses of Big/SmallAutoField for DEFAULT_AUTO_FIELD.</title>
<updated>2021-04-08T11:17:08Z</updated>
<author>
<name>Adam Johnson</name>
<email>me@adamj.eu</email>
</author>
<published>2021-04-08T10:40:16Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=45a58c31e64dbfdecab1178b1d00a3803a90ea2d'/>
<id>urn:sha1:45a58c31e64dbfdecab1178b1d00a3803a90ea2d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #31007 -- Allowed specifying type of auto-created primary keys.</title>
<updated>2020-12-15T10:25:46Z</updated>
<author>
<name>Tom Forbes</name>
<email>tom@tomforb.es</email>
</author>
<published>2020-07-12T12:59:57Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=b5e12d490af3debca8c55ab3c1698189fdedbbdb'/>
<id>urn:sha1:b5e12d490af3debca8c55ab3c1698189fdedbbdb</id>
<content type='text'>
This also changes the default type of auto-created primary keys
for new apps and projects to BigAutoField.
</content>
</entry>
<entry>
<title>Fixed #30023 -- Prevented SQLite schema alterations while foreign key checks are enabled.</title>
<updated>2018-12-15T23:51:59Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2018-12-08T00:55:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=315357ad25a6590e7f4564ec2e56a22132b09001'/>
<id>urn:sha1:315357ad25a6590e7f4564ec2e56a22132b09001</id>
<content type='text'>
Prior to this change foreign key constraint references could be left pointing
at tables dropped during operations simulating unsupported table alterations
because of an unexpected failure to disable foreign key constraint checks.

SQLite3 does not allow disabling such checks while in a transaction so they
must be disabled beforehand.

Thanks ezaquarii for the report and Carlton and Tim for the review.
</content>
</entry>
<entry>
<title>Refs #25530 -- Tracked references of deferred SQL statements.</title>
<updated>2017-06-21T04:03:31Z</updated>
<author>
<name>Simon Charette</name>
<email>charette.s@gmail.com</email>
</author>
<published>2016-05-24T19:25:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=3b429c96736b8328c40e5d77282b0d30de563c3c'/>
<id>urn:sha1:3b429c96736b8328c40e5d77282b0d30de563c3c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Sorted imports per isort 4.2.9.</title>
<updated>2017-06-01T17:23:48Z</updated>
<author>
<name>Tim Graham</name>
<email>timograham@gmail.com</email>
</author>
<published>2017-06-01T17:23:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=cde31daf8815e05b4b86b857b49fb0e31e1f0a38'/>
<id>urn:sha1:cde31daf8815e05b4b86b857b49fb0e31e1f0a38</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #23919 -- Removed encoding preambles and future imports</title>
<updated>2017-01-18T08:55:19Z</updated>
<author>
<name>Claude Paroz</name>
<email>claude@2xlibre.net</email>
</author>
<published>2016-11-19T17:19:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=d7b9aaa366dd54ecc3142c588162e3adc7c2f7ac'/>
<id>urn:sha1:d7b9aaa366dd54ecc3142c588162e3adc7c2f7ac</id>
<content type='text'>
</content>
</entry>
</feed>
