summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3/creation.py
AgeCommit message (Expand)Author
2019-11-21Fixed #30413 -- Fixed test database signature on SQLite when test database na...Farhaan Bukhsh
2019-11-07Refs #29983 -- Added support for using pathlib.Path in all settings.Jon Dufresne
2019-02-13Fixed #30184 -- Removed ellipsis characters from shell output strings.Dan Davis
2018-09-26Refs #29784 -- Switched to https:// links where available.Jon Dufresne
2018-08-22Refs #29654 -- Replaced three dots with ellipsis character in output strings.Claude Paroz
2018-07-19Fixed #29040 -- Made test database creation messages use a consistent output ...Claude Paroz
2018-02-26Refs #28909 -- Simplifed code using unpacking generalizations.Mariusz Felisiak
2017-11-07Fixed #28769 -- Replaced 'x if x else y' with 'x or y'.Дилян Палаузов
2017-10-03Refs #28584 -- Removed unused DatabaseFeatures.can_share_in_memory_db.Tim Graham
2017-09-11Fixed #28578 -- Renamed DatabaseCreation number arguments to suffix.Jon Dufresne
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2016-08-17Fixed #27077 -- Made SQLite's in-memory database checks DRYer.Chris Jerdonek
2016-08-17Fixed #27078 -- Simplified "if" logic in SQLite's _get_test_db_name().Chris Jerdonek
2015-10-06Refs #12118 -- Allowed "mode=memory" in SQLite test database names.Riccardo Magliocchetti
2015-09-25Fixed #25196 -- Normalized database representations in test database messages.Ville Skyttä
2015-09-09Cloned databases for running tests in parallel.Aymeric Augustin
2015-01-18Removed obsolete SQL generation methods.Tim Graham
2015-01-14Fixed #22603 -- Reorganized classes in django.db.backends.Tim Graham
2014-12-31Moved DatabaseCreation.data_types properties to DatabaseWrapper.Tim Graham
2014-12-30Fixed #12118 -- Added shared cache support to SQLite in-memory testing.Andriy Sokolovskiy
2014-12-20Fixed #2443 -- Added DurationField.Marc Tamlyn
2014-09-16Fixed #19463 -- Added UUIDFieldMarc Tamlyn
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-05-28Fixed #20550 -- Added ability to preserve test db between runsGreg Chapple
2014-03-09Reorganized the database test settingsShai Berger
2013-09-06Fixed #10164 -- Made AutoField increase monotonically on SQLiteChris Wilson
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-03-11Added an API to control database-level autocommit.Aymeric Augustin
2013-03-02Add a BinaryField model fieldClaude Paroz
2012-10-22Fixed #19162 -- Wrong indentation.Jan Bednařík
2012-08-08[py3] Replaced raw_input by inputClaude Paroz
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-03-13Fixed #16329 -- Fixed detection of transaction-handling capabilities when all...Ramiro Morales
2011-07-06Fixed #16250 -- Made test database creation support code in the PostgreSQL DB...Ramiro Morales
2011-06-11Fixed #811 -- Added support for IPv6 to forms and model fields. Many thanks t...Jannis Leidel
2010-12-08Fixed error introduced in r14666 that results in the message reporting the te...Ramiro Morales
2010-08-07Rationalized the verbosity levels (including introducing a new super-verbose ...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-17Fixed #399: Added big integer field. Thanks to Tomáš Kopeček for persisten...Karen Tracey
2008-09-01Fixed #8210 and #8664: moved `USStateField` and `PhoneNumberField` to `django...Jacob Kaplan-Moss
2008-08-16Fixed #8355: Removed some whitespace that was apparently causing difficulty w...Russell Keith-Magee
2008-08-15Fixed #8331 -- Added style parameter to sqlite backend implementation of sql_...Russell Keith-Magee
2008-08-11Fixed #5461 -- Refactored the database backend code to use classes for the cr...Russell Keith-Magee
2008-07-18Fixed #7805 -- Removed ImageField.get_internal_type() because it doesn't offe...Adrian Holovaty
2007-09-19Fixed #231: all fields that should take max_length now do. Thanks, Don Spauld...Jacob Kaplan-Moss
2007-08-05Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `For...Gary Wilson Jr
2007-07-20Added a db_type() method to the database Field class. This is a hook for calc...Adrian Holovaty