Remove Unique constraint on a column in sqlite database
问题 I am trying to remove a UNIQUE constraint on a column for sqlite but I do not have the name to remove the constraint. How can I find the name of the UNIQUE constraint name to remove it. Below is the schema I see for the table I want to remove the constraint UNIQUE (datasource_name) sqlite> .schema datasources CREATE TABLE "datasources" ( created_on DATETIME NOT NULL, changed_on DATETIME NOT NULL, id INTEGER NOT NULL, datasource_name VARCHAR(255), is_featured BOOLEAN, is_hidden BOOLEAN,