mm-auth-service/sql/V7__Create_analytics_table.sql

9 lines
301 B
MySQL
Raw Permalink Normal View History

2025-07-25 11:00:13 +00:00
create table "application_analytics"
(
"id" char(36) not null primary key,
"application_id" char(36) not null,
"gateway_id" bigint not null,
"hit_date" date not null,
"value" integer not null
);
comment on table "application_analytics" is 'null';