Server IP : 1.179.227.78 / Your IP : 10.104.4.41 Web Server : Apache System : Linux afdc-mdu34 5.4.0-153-generic #170-Ubuntu SMP Fri Jun 16 13:43:31 UTC 2023 x86_64 User : www ( 1001) PHP Version : 7.4.30 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/afdc-mdu34.rtarf.mi.th/joomla/tmp/install_5b8cf5889ab80/backend/sql/xml/ |
Upload File : |
<?xml version="1.0" encoding="UTF-8"?> <schema> <!-- Metadata --> <meta> <!-- Supported driver types --> <drivers> <driver>sqlsrv</driver> <driver>sqlazure</driver> </drivers> </meta> <!-- SQL commands to run on installation and update --> <sql> <!-- Create the #__ak_profiles table if it's missing --> <action table="#__ak_profiles" canfail="0"> <condition type="missing" value="" /> <query><![CDATA[ CREATE TABLE [#__ak_profiles] ( [id] [INT] IDENTITY(1,1) NOT NULL, [description] [NVARCHAR](255) NOT NULL, [configuration] TEXT NULL, [filters] TEXT NULL, [quickicon] [TINYINT] NOT NULL DEFAULT ('1'), CONSTRAINT [PK_#__ak_profiles] PRIMARY KEY CLUSTERED ( [id] ASC ) WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF) ) ]]></query> </action> <!-- Insert into #__ak_profiles if id=1 is not there --> <action table="#__ak_profiles" canfail="1"> <condition type="equals" operator="not" value="1"><![CDATA[ SELECT COUNT(*) FROM [#__ak_profiles] WHERE id = 1; ]]></condition> <!-- SQL Server does not allow an explicit value for an auto increment field --> <query><![CDATA[ INSERT INTO #__ak_profiles (description, configuration, filters, quickicon) SELECT 'Default Backup profile', '', '', 1 ]]></query> </action> <!-- Create #__ak_stats if it's missing --> <action table="#__ak_stats" canfail="0"> <condition type="missing" value="" /> <query><![CDATA[ CREATE TABLE [#__ak_stats] ( [id] [BIGINT] IDENTITY(1,1) NOT NULL, [description] [NVARCHAR](255) NOT NULL, [comment] [NVARCHAR](4000) NULL, [backupstart] [DATETIME] NOT NULL DEFAULT ('1900-01-01 00:00:00'), [backupend] [DATETIME] NOT NULL DEFAULT ('1900-01-01 00:00:00'), [status] [NVARCHAR](8) NOT NULL DEFAULT ('run'), [origin] [NVARCHAR](30) NOT NULL DEFAULT ('backend'), [type] [NVARCHAR](30) NOT NULL DEFAULT ('full'), [profile_id] [BIGINT] NOT NULL DEFAULT ('1'), [archivename] [NVARCHAR](4000), [absolute_path] [NVARCHAR](4000), [multipart] [INT] NOT NULL DEFAULT ('0'), [tag] [NVARCHAR](255) NULL, [backupid] [NVARCHAR](255) NULL, [filesexist] [TINYINT] NOT NULL DEFAULT ('1'), [remote_filename] [NVARCHAR](1000) NULL, [total_size] [BIGINT] NOT NULL DEFAULT ('0'), CONSTRAINT [PK_#__ak_stats] PRIMARY KEY CLUSTERED ( [id] ASC ) WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF) ) ]]></query> <query canfail="1"><![CDATA[ CREATE NONCLUSTERED INDEX [idx_fullstatus] ON [#__ak_stats] ( [filesexist] ASC, [status] ASC )WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF) ]]></query> <query canfail="1"><![CDATA[ CREATE NONCLUSTERED INDEX [idx_stale] ON [#__ak_stats] ( [status] ASC, [origin] ASC )WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF) ]]></query> </action> <!-- Create #__ak_storage if it's missing --> <action table="#__ak_storage" canfail="0"> <condition type="missing" value="" /> <query><![CDATA[ CREATE TABLE [#__ak_storage] ( [tag] [NVARCHAR](255) NOT NULL, [lastupdate] [DATETIME] NOT NULL DEFAULT ('1900-01-01 00:00:00'), [data] [TEXT] ) ]]></query> </action> <!-- Add the backupid column to #__ak_stats if it's missing --> <action table="#__ak_stats" canfail="1"> <condition type="missing" value="backupid" /> <query><![CDATA[ ALTER TABLE [#__ak_stats] ADD [backupid] [NVARCHAR](255) DEFAULT NULL ]]></query> </action> <!-- Add the quickicon column to #__ak_profiles if it's missing --> <action table="#__ak_profiles" canfail="1"> <condition type="missing" value="quickicon" /> <query><![CDATA[ ALTER TABLE [#__ak_profiles] ADD [quickicon] [TINYINT] NOT NULL DEFAULT ('1') ]]></query> </action> </sql> </schema>