mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
17 lines
483 B
SQL
17 lines
483 B
SQL
-- DropForeignKey
|
|
ALTER TABLE "team_user" DROP CONSTRAINT "team_user_team_id_fkey";
|
|
|
|
-- DropForeignKey
|
|
ALTER TABLE "team_user" DROP CONSTRAINT "team_user_user_id_fkey";
|
|
|
|
-- DropForeignKey
|
|
ALTER TABLE "website" DROP CONSTRAINT "website_team_id_fkey";
|
|
|
|
-- DropForeignKey
|
|
ALTER TABLE "website" DROP CONSTRAINT "website_user_id_fkey";
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "website_team_id_idx" ON "website"("team_id");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "website_user_id_idx" ON "website"("user_id");
|