All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sql.migration.V20160311221657__AddClientStats.sql Maven / Gradle / Ivy

The newest version!
create table client_stats(
    id bigint not null,
    user_id int not null,
    auth_id bigint not null,
    event varchar(1024) not null,
    primary key(id)
);
create index on client_stats(user_id);
create index on client_stats(auth_id);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy