Dokumenteninfo wird jetzt in DB geschrieben.
This commit is contained in:
@@ -4,5 +4,15 @@ CREATE TABLE IF NOT EXISTS `#__eis_documents` (
|
||||
`path` TEXT NOT NULL,
|
||||
`parent_id` INT UNSIGNED DEFAULT NULL,
|
||||
`is_folder` TINYINT(1) DEFAULT 0,
|
||||
`title` VARCHAR(255) DEFAULT NULL,
|
||||
`description` TEXT DEFAULT NULL,
|
||||
`ordering` INT DEFAULT 0,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `#__eis_settings` (
|
||||
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
`pdf_path` TEXT NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
2
com_eis/install/sql/mysql/uninstall.mysql.utf8.sql
Normal file
2
com_eis/install/sql/mysql/uninstall.mysql.utf8.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
DROP TABLE IF EXISTS `#__eis_settings`;
|
||||
DROP TABLE IF EXISTS `#__eis_documents`;
|
||||
Reference in New Issue
Block a user