﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	resolution	keywords	cc	parents
150	Set deprecated indexing back to keeping index information	Christopher Allan Webber	Christopher Allan Webber	"{{{
#!rst
When you create an index in indexes.py it's like:

::

    USER_INDEXES = {
        'username_unique': {
            # Index usernames, and make sure they're unique.
            # ... I guess we might need to adjust this once we're federated :)
            'index': 'username',
            'unique': True},
        'created': {
            # All most recently created users
            'index': 'created'}}

However when you remove it, we just keep track on the key/name
there (like 'username\_unique' and drop the rest of the info
because it isn't immediately needed.

::

    DEPRECATED_USER_INDEXES = ['created']

... that's a shame because then we might forget what the original
index was, and all that useful information. Even though that's not
needed, we should keep it around.

I originally wrote the code to be like that, then I changed it.
Time to change it back!



}}}"	defect	closed	critical	0.0.4	programming	FIXED			
