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

sql.migration.V20150618174638__CreateOAuth2Tokens.sql Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
create table oauth2_tokens (
    id bigint not null,
    user_id varchar(255) not null,
    access_token varchar(255) not null,
    token_type varchar(255) not null,
    expires_in bigint not null,
    refresh_token varchar(255),
    created_at timestamp not null,
    primary key(id, user_id)
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy