Timeline
05/03/10:
- 19:34 Ticket #453 ('ManyToManyField' object has no attribute _m2m_reverse_column_cache) closed by
- invalid: Traced down to a Django bug in 1.2.
- 19:04 Ticket #453 ('ManyToManyField' object has no attribute _m2m_reverse_column_cache) created by
- Apparently caused when removing self-referential M2M. Traceback: […]
- 16:06 Ticket #452 (0.7 does not work with 0.6 migrations where custome fields are referenced) closed by
- wontfix: This is a known incompatibility, and is mentioned (perhaps too subtly) in …
- 15:58 Ticket #452 (0.7 does not work with 0.6 migrations where custome fields are referenced) created by
- When trying to rollback the migration, south fails on the ones created …
- 14:09 Ticket #451 (South seems to break get_profile in test mode) created by
- When executing the code below in test mode (./manage.py test) profile = …
- 10:54 Ticket #421 (DROP DEFAULT on MySQL 5.1) closed by
- fixed
04/30/10:
- 23:34 Ticket #450 (Backwards data migrations do not obey no_dry_run) closed by
- duplicate: This has already been fixed as part of #403.
- 20:48 BadContent edited by
- (diff)
- 20:19 Ticket #450 (Backwards data migrations do not obey no_dry_run) created by
- Backwards data migrations need to be wrapped in "if not db.dry_run:" …
04/29/10:
- 16:27 Ticket #444 (South reports error: when creating mysql CharField with max_length > 1000.) closed by
- wontfix: This is a very similar problem to #293, but with indices. I'm not sure …
- 15:57 Ticket #443 (__import__) closed by
- duplicate: It is wrong in principle, but due to the way import is implemented …
- 15:11 Ticket #449 (Baselining migrations) created by
- At some stage one accumulates quite a number of migrations, especially in …
- 12:38 Ticket #448 (south syncdb affects app_template_dirs content so template loader raises ...) created by
- When I'm running tests for my app some of them raises …
- 10:20 Ticket #447 (added columns get wrong default value in SQLite) closed by
- fixed: Hrm, I remember it being discussed before, but I think that discussion …
- 10:19 Ticket #415 (adding OneToOneFields creates wrong column name) closed by
- fixed: Thanks, pulled.
- 06:00 Ticket #447 (added columns get wrong default value in SQLite) created by
- (I'm positive I've seen this discussed before somewhere, but for the life …
04/28/10:
- 21:51 Ticket #446 (introspection rules could accept callable for more flexibility) created by
- Where the introspection rules currently require a Field attribute name …
- 21:22 Ticket #445 (unapply a migration) closed by
- invalid: Actually, the migrate command also unapplies migration; as it says in …
- 16:59 Ticket #445 (unapply a migration) created by
- south doesn't permit to unapply a migration easyly. There is a command for …
- 09:47 Ticket #444 (South reports error: when creating mysql CharField with max_length > 1000.) created by
- Server info: * Ubuntu 8.04 * MySql 5.0.51a (allow varchar with at most …
- 09:21 Ticket #443 (__import__) created by
- This code from south/utils.py is wrong: module = …
04/26/10:
- 08:47 Ticket #441 (test failures on 32-bit architectures) closed by
- fixed: Excellent, that looks to be fixed then.
04/25/10:
- 22:01 Ticket #440 (No way to turn off interactivity on migrate (or syncdb --migrate)) closed by
- fixed: Merged, thanks. I'm not sure I can really write a test framework for this …
- 21:46 Ticket #442 (django-annoying AutoOneToOneField introspection plugin) closed by
- fixed: Thanks, applied as [5e8178613396].
- 21:32 Ticket #442 (django-annoying AutoOneToOneField introspection plugin) created by
- I use django-annoying …
- 02:17 Ticket #441 (test failures on 32-bit architectures) created by
- I'm getting 5 test failures running the tests on Ubuntu 9.10, x86 32-bit, …
04/24/10:
- 18:06 Ticket #440 (No way to turn off interactivity on migrate (or syncdb --migrate)) created by
- Django's post_syncdb signal takes an "interactive" kwarg which listeners …
- 10:12 Ticket #439 (Command responses should examine management command name) created by
- I use virtualenv, and don't have a ./manage.py file: this makes it easy to …
- 00:27 Ticket #427 (Fixtures not always loaded) closed by
- fixed: Actually, what I've done is replicate the syncdb behaviour of django - …
- 00:17 Ticket #423 (Custom ForeignKey Field with hardcoded proxy model fails) closed by
- duplicate: This may have come first, but #436 came with a patch, so resolving this as …
- 00:17 Ticket #436 (Migration Fails with Proxy Model) closed by
- fixed: Yes, that's exactly the fix, thanks! Committed in [0505afae2906].
- 00:08 Ticket #437 (migrate ignores --merge option) closed by
- fixed: Wow, that's an omission and a half; sorry about that. Fixed in …
04/23/10:
- 14:59 Ticket #438 (Oracle migrate error) closed by
- duplicate: Duplicate of #412.
- 14:58 Ticket #438 (Oracle migrate error) created by
- Traceback (most recent call last): File "manage.py", line 15, in …
- 14:51 Ticket #437 (migrate ignores --merge option) created by
- migrate command in management just doesn't pass merge to …
04/22/10:
- 01:37 Ticket #436 (Migration Fails with Proxy Model) created by
- It appears that there is a problem migrating applications that have a …
04/21/10:
- 13:43 Ticket #435 (Changing a ForeignKey from a "real" model to a proxy of it generates ...) created by
- Steps to reproduce: 1) Have a model with a ForiegnKey? to e.g. auth.User …
- 08:59 Ticket #422 (Custom Field that defines an __init__ without arguments) closed by
- invalid: Ah, yes, I see the problem. You'll need to write new introspection rules …
04/20/10:
- 13:21 Ticket #433 (Extract syncdb patching to separate function) closed by
- fixed: Yup, the patch looks good, and has the same results before and after (one …
- 13:16 Contributing edited by
- (diff)
- 08:32 Ticket #434 (Ordering of items in a Migration leads to error) created by
- I generated a schema migration which contained the following lines: …
- 02:27 Ticket #433 (Extract syncdb patching to separate function) created by
- I have some code that manually calls the following to create a test …
04/19/10:
- 10:22 Ticket #432 (schemamigration cannot automatically detect the change of default value.) closed by
- wontfix: This is entirely correct behaviour; Django doesn't store defaults in the …
- 10:13 Ticket #432 (schemamigration cannot automatically detect the change of default value.) created by
- My server information: * Ubuntu 8.04 models.py: […] After changing …
- 10:07 Ticket #431 (db.alter_column() cannot change default value in MySQL) created by
- Here is my server information: * mysql 5.0.51a * ubuntu 8.04 Using …
- 01:44 Ticket #430 (Avoiding the "./manage.py migrate myapp 0001 --fake") created by
- It would be great if one could avoid having to run "./manage.py migrate …
04/17/10:
- 23:42 Ticket #429 (Altering a column to allow NULL fails with sqlite) created by
- Using the following to alter a column to allow a null value: […] …
- 03:23 Ticket #428 (Backwards migrations don't track dependency orm entries) created by
- I have a pair of migrations in different apps that essentially copy data …
04/16/10:
- 02:44 Ticket #427 (Fixtures not always loaded) created by
- If an initial_data fixture exists for an app, then this will be loaded, …
- 01:09 Ticket #426 (Replace __import__ with import_module) created by
- The fromlist parameter of __import__ is poorly documented and …
04/15/10:
- 23:42 Ticket #424 (Custom ForeignKey Field does not get _id postfix on sqlite) closed by
- duplicate: This looks to be a duplicate of #415, on second analysis.
- 17:49 BadContent edited by
- (diff)
- 03:01 Ticket #425 (Removing null=True needs to ask for a default) created by
- When creating a schemamigration that removes null=True from a field, South …
04/13/10:
- 14:32 Ticket #417 (--no-initial-data shoud be disabled by default) closed by
- wontfix: This is very much a perspective thing. People expect migrate to work …
- 12:37 Ticket #418 (Migrations with - (hyphen) in their name are not found by south) closed by
- wontfix: This is intentional; migrations are python modules, and thus should have …
04/12/10:
- 15:51 Ticket #424 (Custom ForeignKey Field does not get _id postfix on sqlite) created by
- I've only tested this on sqlite I've got a custom field that subclasses …
- 15:05 Ticket #423 (Custom ForeignKey Field with hardcoded proxy model fails) created by
- I've got a field that inherits from ForeignKey. In the field's …
- 13:07 Ticket #422 (Custom Field that defines an __init__ without arguments) created by
- I have a custom field that store the last modification time of the model …
- 07:28 Ticket #421 (DROP DEFAULT on MySQL 5.1) created by
- I'm on MySQL 5.1.14, and I've observed the following behaviour: SQL …
- 00:08 Ticket #416 (South in Python 2.3) closed by
- wontfix: That's an impressive amount of work you've put in the patch, but I'm going …
04/11/10:
- 12:19 Ticket #414 (Classes that inherit from ...) closed by
- fixed: Committed in [758283ed1e6e].
- 12:00 Ticket #411 (Option to Ignore Ghost Migrations) closed by
- fixed: Thanks, pulled and merged as [965340231707].
- 09:54 BadContent edited by
- (diff)
04/09/10:
- 13:02 Ticket #420 (Field ordering wrong after running an initial schema migration) created by
- #145 dealt with incorrect field ordering, and was fixed quite a long time …
- 12:51 Ticket #419 (south logging misbehaves.) created by
- == problem == south logging sets its own debug level. (and worse it sets …
04/08/10:
- 22:02 Ticket #418 (Migrations with - (hyphen) in their name are not found by south) created by
- Some of our old migrations have hyphens instead of underscores to separate …
04/07/10:
- 05:23 Ticket #417 (--no-initial-data shoud be disabled by default) created by
- South is a great tool to migrate database schema. But if i use a command …
04/06/10:
- 23:40 BadContent edited by
- (diff)
- 16:13 Ticket #416 (South in Python 2.3) created by
- Greetings, Did a backport of south v0.7 to work with python 2.3, here is …
- 00:45 BadContent edited by
- (diff)
04/05/10:
04/04/10:
- 23:17 Ticket #415 (adding OneToOneFields creates wrong column name) created by
- consider the following model: […] where * A was created, * then …
Note: See TracTimeline
for information about the timeline view.
