mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 00:55:25 +00:00
* Analytics events * prepare * change route prefix * update route return * Add mod launcher analytics * more UA strings * fix ci * caching on analytics events * Return parent modpack versions for playtime queries * sqlx prepare * fmt * dummy fixtures
7 lines
150 B
SQL
7 lines
150 B
SQL
create table analytics_events (
|
|
id bigint primary key,
|
|
meta jsonb not null,
|
|
starts timestamptz not null,
|
|
ends timestamptz not null
|
|
);
|