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

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -