You've already forked AstralRinth
244c263e40
* 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
|
|
);
|