mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-24 05:05:20 -04:00
12 lines
263 B
SQL
12 lines
263 B
SQL
-- Up
|
|
|
|
CREATE TABLE social_lookup (
|
|
userId TEXT NOT NULL REFERENCES users ON DELETE CASCADE,
|
|
provider TEXT NOT NULL,
|
|
identifier TEXT NOT NULL
|
|
);
|
|
|
|
CREATE INDEX "social_lookup_provider_identifier" ON "social_lookup" ("provider", "identifier");
|
|
|
|
-- Down
|