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

db.migration.V0.5.8__init.sql Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
---
--- oauth
---
drop table public.oauth_access_token;

create table public.oauth_access_token (
	token_id VARCHAR(255),
	token bytea,
	authentication_id VARCHAR(255) PRIMARY KEY,
	user_name VARCHAR(255),
	client_id VARCHAR(255),
	authentication bytea,
	refresh_token VARCHAR(255)
);

update system_properties set value='0.5.8' where key='version';




© 2015 - 2025 Weber Informatics LLC | Privacy Policy