mirror of
https://gitlab.com/commento/commento.git
synced 2025-04-28 06:30:28 -04:00
17 lines
430 B
SQL
17 lines
430 B
SQL
-- Make all login providers optional (but enabled by default)
|
|
|
|
ALTER TABLE domains
|
|
ADD commentoProvider BOOLEAN NOT NULL DEFAULT true;
|
|
|
|
ALTER TABLE domains
|
|
ADD googleProvider BOOLEAN NOT NULL DEFAULT true;
|
|
|
|
ALTER TABLE domains
|
|
ADD twitterProvider BOOLEAN NOT NULL DEFAULT true;
|
|
|
|
ALTER TABLE domains
|
|
ADD githubProvider BOOLEAN NOT NULL DEFAULT true;
|
|
|
|
ALTER TABLE domains
|
|
ADD gitlabProvider BOOLEAN NOT NULL DEFAULT true;
|