django - Why SlugField generates these indexes? -
i have model slugfield. and, after ran south migrate, saw 2 indexes, mentioned below , in postgres. use of second index?
create index school_student_slug on school_student using btree (slug); create index school_student_slug_like on school_student using btree (slug varchar_pattern_ops);
Comments
Post a Comment