Skip to content

Instantly share code, notes, and snippets.

@kayesh
kayesh / remove_unique_constrant.sh
Created July 2, 2020 11:17 — forked from amazingguni/remove_unique_constrant.sh
The way to unset allauth email unique option
SELECT conname
FROM pg_constraint
WHERE conrelid = 'account_emailaddress'::regclass
AND contype = 'u';
ALTER TABLE account_emailaddress DROP CONSTRAINT account_emailaddress_email_key;
@kayesh
kayesh / 00. tutorial.md
Created January 30, 2019 05:11 — forked from maxivak/00. tutorial.md
Importing/Indexing database (MySQL or SQL Server) in Solr using Data Import Handler