Files
CRM/modules/ExtensionStore/schema.xml
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

18 lines
499 B
XML

<?xml version='1.0'?>
<schema>
<tables>
<table>
<name>vtiger_extnstore_users</name>
<sql><![CDATA[CREATE TABLE `vtiger_extnstore_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(50) DEFAULT NULL,
`password` varchar(75) DEFAULT NULL,
`instanceurl` varchar(255) DEFAULT NULL,
`createdon` datetime DEFAULT NULL,
`deleted` int(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
</table>
</tables>
</schema>