Commit 9fd99016 by Bridger Maxwell

Removed duplicate index on simplewiki_namespace. Re-added migration that was…

Removed duplicate index on simplewiki_namespace. Re-added migration that was exposing South 0.7.4 bug.
parent 58348a98
......@@ -17,7 +17,7 @@ class ShouldHaveExactlyOneRootSlug(Exception):
pass
class Namespace(models.Model):
name = models.CharField(max_length=30, db_index=True, unique=True, verbose_name=_('namespace'))
name = models.CharField(max_length=30, unique=True, verbose_name=_('namespace'))
# TODO: We may want to add permissions, etc later
@classmethod
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment