mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-23 04:34:15 -04:00
16 lines
397 B
SQL
16 lines
397 B
SQL
-- Up
|
|
|
|
CREATE INDEX "profiles_teamName" ON "profiles" ("teamName");
|
|
CREATE INDEX "profiles_footerName" ON "profiles" ("footerName");
|
|
CREATE INDEX "profiles_footerAreas" ON "profiles" ("footerAreas");
|
|
|
|
CREATE INDEX "reports_userId" ON "reports" ("userId");
|
|
|
|
-- Down
|
|
|
|
DROP INDEX "profiles_teamName";
|
|
DROP INDEX "profiles_footerName";
|
|
DROP INDEX "profiles_footerAreas";
|
|
|
|
DROP INDEX "reports_userId";
|