mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2025-04-03 05:11:49 +00:00
Multi database support
This commit is contained in:
parent
ebb396869e
commit
1c3edbd5d8
@ -1 +0,0 @@
|
||||
DROP TABLE IF EXISTS `#__patchtester_tests`
|
@ -0,0 +1 @@
|
||||
DROP TABLE IF EXISTS `#__patchtester_tests`;
|
@ -0,0 +1,11 @@
|
||||
CREATE TABLE "#__patchtester_tests" (
|
||||
"id" serial NOT NULL,
|
||||
"pull_id" bigint NOT NULL,
|
||||
"data" text NOT NULL,
|
||||
"patched_by" bigint NOT NULL,
|
||||
"applied" bigint NOT NULL,
|
||||
"applied_version" character varying(25) NOT NULL,
|
||||
"rating" bigint NOT NULL,
|
||||
"comments" character varying(3000) DEFAULT '' NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
@ -0,0 +1 @@
|
||||
DROP TABLE IF EXISTS "#__patchtester_tests";
|
@ -0,0 +1,14 @@
|
||||
CREATE TABLE [#__patchtester_tests](
|
||||
[id] [bigint] IDENTITY(1,1) NOT NULL,
|
||||
[pull_id] [bigint] NOT NULL,
|
||||
[data] [nvarchar](MAX) NULL,
|
||||
[patched_by] [bigint] NOT NULL,
|
||||
[applied] [bigint] NOT NULL,
|
||||
[applied_version] [nvarchar](25) NOT NULL,
|
||||
[rating] [bigint] NOT NULL,
|
||||
[comments] [nvarchar](255) NOT NULL DEFAULT '',
|
||||
CONSTRAINT [PK_#__patchtester_tests] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[id] ASC
|
||||
) WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF)
|
||||
);
|
@ -0,0 +1 @@
|
||||
DROP TABLE [#__patchtester_tests];
|
@ -0,0 +1 @@
|
||||
# Placeholder file to set the database schema version to 2.0.0
|
@ -0,0 +1 @@
|
||||
# Placeholder file to set the database schema version to 2.0.0
|
@ -0,0 +1 @@
|
||||
# Placeholder file to set the database schema version to 2.0.0
|
@ -11,14 +11,25 @@
|
||||
<description>COM_PATCHTESTER_XML_DESCRIPTION</description>
|
||||
<install>
|
||||
<sql>
|
||||
<file driver="mysql" charset="utf8">install/sql/mysql/install.mysql.utf8.sql</file>
|
||||
<file driver="mysql" charset="utf8">install/sql/mysql/install.sql</file>
|
||||
<file driver="postgresql" charset="utf8">install/sql/postgresql/install.sql</file>
|
||||
<file driver="sqlsrv" charset="utf8">install/sql/sqlsrv/install.sql</file>
|
||||
</sql>
|
||||
</install>
|
||||
<uninstall>
|
||||
<sql>
|
||||
<file driver="mysql" charset="utf8">install/sql/mysql/uninstall.mysql.utf8.sql</file>
|
||||
<file driver="mysql" charset="utf8">install/sql/mysql/uninstall.sql</file>
|
||||
<file driver="postgresql" charset="utf8">install/sql/postgresql/uninstall.sql</file>
|
||||
<file driver="sqlsrv" charset="utf8">install/sql/sqlsrv/uninstall.sql</file>
|
||||
</sql>
|
||||
</uninstall>
|
||||
<update>
|
||||
<schemas>
|
||||
<schemapath type="mysql">install/sql/updates/mysql</schemapath>
|
||||
<schemapath type="postgresql">install/sql/updates/postgresql</schemapath>
|
||||
<schemapath type="sqlsrv">install/sql/updates/sqlsrv</schemapath>
|
||||
</schemas>
|
||||
</update>
|
||||
<administration>
|
||||
<menu img="components/com_patchtester/assets/images/icon-16-patchtester.png">com_patchtester</menu>
|
||||
<files folder="admin">
|
||||
|
Loading…
x
Reference in New Issue
Block a user