mirror of
https://github.com/umami-software/umami.git
synced 2026-02-20 04:25:39 +01:00
5 lines
161 B
SQL
5 lines
161 B
SQL
-- AlterTable
|
|
ALTER TABLE
|
|
event_data
|
|
ADD
|
|
CONSTRAINT fk_website_event FOREIGN KEY (website_event_id) REFERENCES website_event(event_id) ON DELETE CASCADE;
|