primo commit
This commit is contained in:
31
libraries/fof40/sql/sqlsrv.xml
Normal file
31
libraries/fof40/sql/sqlsrv.xml
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--~
|
||||
~ @package FOF
|
||||
~ @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd
|
||||
~ @license GNU General Public License version 3, or later
|
||||
-->
|
||||
|
||||
<schema>
|
||||
<meta>
|
||||
<drivers>
|
||||
<driver>sqlsrv</driver>
|
||||
<driver>sqlazure</driver>
|
||||
</drivers>
|
||||
</meta>
|
||||
|
||||
<sql>
|
||||
<action table="#__akeeba_common" canfail="0">
|
||||
<condition type="missing" value=""/>
|
||||
<query><![CDATA[
|
||||
CREATE TABLE [#__akeeba_common] (
|
||||
[key] [NVARCHAR](192) NOT NULL,
|
||||
[value] [TEXT] NOT NULL,
|
||||
CONSTRAINT [PK_#__akeeba_common] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[key] ASC
|
||||
) WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF)
|
||||
)
|
||||
]]></query>
|
||||
</action>
|
||||
</sql>
|
||||
</schema>
|
||||
Reference in New Issue
Block a user