index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
core
/
management
/
commands
/
createcachetable.py
Age
Commit message (
Expand
)
Author
2024-05-10
Fixed #35429 -- Added argparse choices to --database options.
SaJH
2022-02-07
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Mariusz Felisiak
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2020-05-21
Fixed #31546 -- Allowed specifying list of tags in Command.requires_system_ch...
Hasan Ramezani
2020-02-04
Simplified imports from django.db and django.contrib.gis.db.
Nick Pope
2018-07-02
Removed parser.add_arguments() arguments that match the defaults.
Claude Paroz
2017-12-04
Fixed #28860 -- Removed unnecessary len() calls.
Дилян Палаузов
2017-03-04
Refs #27795 -- Removed unneeded force_text calls
Claude Paroz
2016-04-08
Fixed E128 flake8 warnings in django/.
Tim Graham
2016-03-05
Refs #26315 -- Cleaned up argparse options in commands.
Jon Dufresne
2015-11-17
Simplified lists creation in three places.
Dmitry Dygalo
2015-04-09
Fixed #24560 -- Added a --dry-run mode to the createcachetable command.
Adam Chainz
2015-02-20
Fixed #24351, #24346 -- Changed the signature of allow_migrate().
Loic Bistuer
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-06-14
Converted remaining management commands to argparse
Claude Paroz
2014-03-22
Avoided transactional DDL on castrated databases.
Aymeric Augustin
2014-03-21
Fixed transaction handling in two management commands.
Aymeric Augustin
2014-03-21
Removed legacy transaction management per the deprecation timeline.
Aymeric Augustin
2014-02-02
Ensure cursors are closed when no longer needed.
Michael Manfre
2014-01-20
Fixed #16905 -- Added extensible checks (nee validation) framework
Russell Keith-Magee
2013-11-23
Fixed #21012 -- New API to access cache backends.
Curtis Maloney
2013-11-03
Fixed all E226 violations
Alex Gaynor
2013-10-21
Fixed #21288 -- Fixed E126 pep8 warnings
Alasdair Nicol
2013-10-18
Fixed #21267 -- Fixed E502 pep8 warnings
Alasdair Nicol
2013-10-14
Fixed #15888 -- Made tablename argument of createcachetable optional
Claude Paroz
2013-07-30
Rename allow_syncdb to allow_migrate
Andrew Godwin
2013-05-26
Replaced `and...or...` constructs with PEP 308 conditional expressions.
Ramiro Morales
2013-05-17
Replaced an antiquated pattern.
Aymeric Augustin
2013-03-11
Deprecated transaction.commit/rollback_unless_managed.
Aymeric Augustin
2012-08-07
[py3] Ported django.utils.encoding.
Aymeric Augustin
2012-06-07
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Claude Paroz
2012-05-27
Used CommandError in createcachetable command.
Claude Paroz
2012-05-19
Fixed #18325 -- Wrapped self.stdout/stderr in OutputWrapper class
Claude Paroz
2012-04-29
Fixed #18013 -- Use the new 'as' syntax for exceptions.
Claude Paroz
2012-03-10
Fixed #17820 -- Fixed more occurrences of redundant handling of management co...
Ramiro Morales
2012-01-08
Fixed #17300 -- Prevented createcachetable from crashing when the cache table...
Aymeric Augustin
2011-11-19
Fixed #15255 -- Ensured createcachetable honors database routers.
Aymeric Augustin
2011-10-23
Fixed #13760 -- Cleaned up unnecessary default option handling in a bunch of ...
Julien Phalip
2011-07-05
Rolled back r16510, r16513 and r16514 because it wasn't ready.
Jannis Leidel
2011-07-04
Fixed #15255 -- Stopped database cache from ignoring database routers when cr...
Jannis Leidel
2010-02-11
Fixed #11623 -- Corrected table name quoting in db cache backend. Thanks to F...
Russell Keith-Magee
2009-12-22
Fixed #1142 -- Added multiple database support.
Russell Keith-Magee
2008-06-30
Make sure we only create the minimum number of table indexes for MySQL.
Malcolm Tredinnick
2007-09-09
Fixed #5369 -- Refactored the django-admin.py help system, allowing each subc...
Adrian Holovaty
2007-08-20
Refactored quote_name() to DatabaseOperations.quote_name(). Refs #5106
Adrian Holovaty
2007-08-16
Improved error handling for management.py commands, especially for no argumen...
Russell Keith-Magee
2007-08-16
Major refactoring of django.core.management -- it's now a package rather than...
Adrian Holovaty