db.migration.V2015.04.12.19.56.03__iam-avatar-ddl.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clusterra-iam-avatar Show documentation
Show all versions of clusterra-iam-avatar Show documentation
A application used as an example on how to set up pushing its components to the Central Repository.
create table iam_avatar (
id varchar(255) not null,
avatarType varchar(255) not null,
image128 bytea,
image24 bytea,
image48 bytea,
isDefault boolean,
primary key (id)
);
© 2015 - 2024 Weber Informatics LLC | Privacy Policy