Add unique index. SQLite3
Asked Answered
F

1

21

I need to add a unique field index to an existing table. I made this row:

ALTER TABLE auth_user ADD UNIQUE INDEX (email);

The table and the field are already exist. The error is:

Query Error: near "UNIQUE": syntax error Unable to execute statement

What am I missed? Did it have any specific requirements for SQLite3?

Fantom answered 20/10, 2011 at 13:21 Comment(0)
S
48
CREATE UNIQUE INDEX IF NOT EXISTS MyUniqueIndexName ON auth_user (email)

Also, read the official manual:

http://www.sqlite.org/lang_createindex.html

Sumerian answered 20/10, 2011 at 13:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.