mm-auth-service/sql/V7__Create_analytics_table.sql
2025-07-25 18:00:13 +07:00

9 lines
301 B
SQL

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';