mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
add tag migrations and update send / saveEvent
This commit is contained in:
parent
6ce9a8cef4
commit
bffb98cd51
7 changed files with 102 additions and 1 deletions
5
db/postgresql/migrations/07_add_tag/migration.sql
Normal file
5
db/postgresql/migrations/07_add_tag/migration.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "website_event" ADD COLUMN "tag" VARCHAR(50);
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "website_event_website_id_created_at_tag_idx" ON "website_event"("website_id", "created_at", "tag");
|
||||
Loading…
Add table
Add a link
Reference in a new issue