/
githubmirror
/
tldraw
Обзор
Документация
Войти
/
githubmirror
/
tldraw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
apps/dotcom/zero-cache/migrations/009_add_allow_analytics_cookie.sql
8 строк
421 B
alex
Set up posthog (#5220)
16 янв 2025, 18:19
Не верифицирован
16 янв 2025, 18:19
bc46284
Код
Авторство
О чём код?
-- Purpose: Add an allowAnalyticsCookie column to the user table that indicates whether the user has -- consented to analytics cookies. 3 possible values: -- - true: the user has consented to analytics cookies -- - false: the user has not consented to analytics cookies -- - null: the user has not yet been asked to consent to analytics cookies ALTER TABLE "user" ADD COLUMN "allowAnalyticsCookie" BOOLEAN DEFAULT NULL;