META-INF.sql.tables.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.multi.factor.authentication.timebased.otp.service
Show all versions of com.liferay.multi.factor.authentication.timebased.otp.service
Liferay Multi-Factor Authentication Time-based OTP Service
The newest version!
create table MFATimeBasedOTPEntry (
mvccVersion LONG default 0 not null,
mfaTimeBasedOTPEntryId LONG not null primary key,
companyId LONG,
userId LONG,
userName VARCHAR(75) null,
createDate DATE null,
modifiedDate DATE null,
failedAttempts INTEGER,
lastFailDate DATE null,
lastFailIP VARCHAR(75) null,
lastSuccessDate DATE null,
lastSuccessIP VARCHAR(75) null,
lastValidTOTP VARCHAR(75) null,
sharedSecret VARCHAR(75) null
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy