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

com.liferay.portal.tools.samplesqlbuilder.dependencies.counters.ftl Maven / Gradle / Ivy

There is a newer version: 7.0.0-nightly
Show newest version
<#assign counterModels = dataFactory.newCounterModels()>

<#list counterModels as counterModel>
	<#if ('${counterModel.name}' == 'com.liferay.counter.model.Counter')>
		update Counter set currentId = ${counterModel.currentId} where name = '${counterModel.name}';
	<#else>
		insert into Counter values ('${counterModel.name}', ${counterModel.currentId});
	




© 2015 - 2024 Weber Informatics LLC | Privacy Policy