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
/
sql.py
Age
Commit message (
Expand
)
Author
2008-08-16
Fixes #7845: Removed a piece of stale code that was causing ./manage.py reset...
Russell Keith-Magee
2008-08-11
Fixed #5461 -- Refactored the database backend code to use classes for the cr...
Russell Keith-Magee
2008-08-06
Major refactoring of django.dispatch with an eye towards speed. The net resul...
Jacob Kaplan-Moss
2008-07-31
Fixed #8053 -- Corrected a bug with reset and m2m intermediate tables. Thanks...
Russell Keith-Magee
2008-07-29
Fixed #6095 -- Added the ability to specify the model to use to manage a Many...
Russell Keith-Magee
2008-07-29
Fixed #7589 -- Added a way for post-table-creation SQL modifications to be do...
Malcolm Tredinnick
2008-06-30
Make sure we only create the minimum number of table indexes for MySQL.
Malcolm Tredinnick
2008-06-08
Fixed #6394: improved comment stripping in initial SQL files. Thanks, Thomas ...
Jacob Kaplan-Moss
2008-05-31
Fixed #6820: flush no longer fails under PostgreSQL 8.3. WARNING: In the proc...
Jacob Kaplan-Moss
2008-04-27
Merged the queryset-refactor branch into trunk.
Malcolm Tredinnick
2008-03-27
Added inline Oracle tablespace SQL for unique_together constraints.
Ian Kelly
2008-03-10
Fixed #6374: cross-app and circular FK constraints are now detected and added...
Jacob Kaplan-Moss
2008-01-04
Fixed the Oracle backend mangling colorized unique_together SQL.
Ian Kelly
2007-12-17
Generic relations should not try to drop their related table in "sqlreset".
Malcolm Tredinnick
2007-11-04
Fixed #5729 -- For MySQL (only), always delay the creation of foreign key
Malcolm Tredinnick
2007-09-15
Fixed two more instances of bug #4827 in the management code.
Ian Kelly
2007-09-14
Fixed #5218: Made Oracle create autoinc triggers using the correct name
Ian Kelly
2007-08-25
Fixed #5086 -- The 'flush' and 'sqlflush' management commands no longer touch...
Adrian Holovaty
2007-08-20
Removed legacy django.db.backend import in sql_delete()
Adrian Holovaty
2007-08-20
Refactored get_drop_sequence() to DatabaseOperations.drop_sequence_sql(). Ref...
Adrian Holovaty
2007-08-20
Removed a bunch of legacy django.db.backend imports
Adrian Holovaty
2007-08-20
Implemented BaseDatabaseFeatures and changed all code to access it -- connect...
Adrian Holovaty
2007-08-20
Refactored quote_name() to DatabaseOperations.quote_name(). Refs #5106
Adrian Holovaty
2007-08-20
Refactored get_tablespace_sql() to DatabaseOperations.tablespace_sql(). Refs ...
Adrian Holovaty
2007-08-20
Refactored get_sql_flush() to DatabaseOperations.sql_flush(). Refs #5106
Adrian Holovaty
2007-08-19
Refactored get_max_name_length() to DatabaseOperations.max_name_length(). Ref...
Adrian Holovaty
2007-08-19
Refactored get_drop_foreignkey_sql() to DatabaseOperations.drop_foreignkey_sq...
Adrian Holovaty
2007-08-19
Refactored get_deferrable_sql() to DatabaseOperations.deferrable_sql(). Refs ...
Adrian Holovaty
2007-08-19
Began implementing BaseDatabaseOperations class for every database backend. T...
Adrian Holovaty
2007-08-16
Major refactoring of django.core.management -- it's now a package rather than...
Adrian Holovaty