mirror of
https://github.com/umami-software/umami.git
synced 2026-02-21 04:55:36 +01:00
implemented the user view type and website sharing
This commit is contained in:
parent
7a3443cd06
commit
66e67c7a3b
19 changed files with 260 additions and 68 deletions
19
db/postgresql/migrations/04_add_website_viewer/migration.sql
Normal file
19
db/postgresql/migrations/04_add_website_viewer/migration.sql
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "account" ADD COLUMN "is_viewer" BOOLEAN NOT NULL DEFAULT false;
|
||||
|
||||
-- DropTable
|
||||
DROP TABLE "_event_old";
|
||||
|
||||
-- CreateTable
|
||||
CREATE TABLE "viewerforwebsite" (
|
||||
"user_id" INTEGER NOT NULL,
|
||||
"website_id" INTEGER NOT NULL,
|
||||
|
||||
CONSTRAINT "viewerforwebsite_pkey" PRIMARY KEY ("user_id","website_id")
|
||||
);
|
||||
|
||||
-- AddForeignKey
|
||||
ALTER TABLE "viewerforwebsite" ADD CONSTRAINT "viewerforwebsite_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "account"("user_id") ON DELETE CASCADE ON UPDATE CASCADE;
|
||||
|
||||
-- AddForeignKey
|
||||
ALTER TABLE "viewerforwebsite" ADD CONSTRAINT "viewerforwebsite_website_id_fkey" FOREIGN KEY ("website_id") REFERENCES "website"("website_id") ON DELETE CASCADE ON UPDATE CASCADE;
|
||||
Loading…
Add table
Add a link
Reference in a new issue