1. Version mit DB
This commit is contained in:
BIN
com_eis/.DS_Store
vendored
Normal file
BIN
com_eis/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
com_eis/Archiv.zip
Normal file
BIN
com_eis/Archiv.zip
Normal file
Binary file not shown.
@@ -1,11 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<extension type="component" method="install">
|
||||
<!-- Database table for PDF entries -->
|
||||
<install>
|
||||
<sql>
|
||||
<file driver="mysql" charset="utf8mb4">sql/install/mysql/install.mysql.sql</file>
|
||||
</sql>
|
||||
</install>
|
||||
|
||||
<install>
|
||||
<sql>
|
||||
<file driver="mysql" charset="utf8">install/sql/mysql/install.utf8.sql</file>
|
||||
</sql>
|
||||
</install>
|
||||
|
||||
<name>com_eis</name>
|
||||
<creationDate>2025-07-23</creationDate>
|
||||
@@ -24,7 +25,7 @@
|
||||
<folder>sql</folder>
|
||||
<folder>src</folder>
|
||||
<folder>tmpl</folder>
|
||||
|
||||
<folder>install</folder>
|
||||
<folder>language</folder>
|
||||
<folder>services</folder>
|
||||
</files>
|
||||
|
||||
BIN
com_eis/install/.DS_Store
vendored
Normal file
BIN
com_eis/install/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
com_eis/install/sql/.DS_Store
vendored
Normal file
BIN
com_eis/install/sql/.DS_Store
vendored
Normal file
Binary file not shown.
8
com_eis/install/sql/mysql/install.utf8.sql
Normal file
8
com_eis/install/sql/mysql/install.utf8.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE IF NOT EXISTS `#__eis_documents` (
|
||||
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
`name` VARCHAR(255) NOT NULL,
|
||||
`path` TEXT NOT NULL,
|
||||
`parent_id` INT UNSIGNED DEFAULT NULL,
|
||||
`is_folder` TINYINT(1) DEFAULT 0,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
BIN
com_eis/src/.DS_Store
vendored
Normal file
BIN
com_eis/src/.DS_Store
vendored
Normal file
Binary file not shown.
Reference in New Issue
Block a user