
db.migration.V7__add-resource-ids.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uaa-server Show documentation
Show all versions of uaa-server Show documentation
Single tenant simple OAuth 2 Server a.k.a. Maki UAA (User Account and Authentication)
The newest version!
CREATE TABLE IF NOT EXISTS app_resource_ids (
app_app_id VARCHAR(36) NOT NULL,
resource_ids VARCHAR(255) NOT NULL,
FOREIGN KEY (app_app_id) REFERENCES app (app_id)
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy