first commit

This commit is contained in:
2026-02-08 21:16:11 +01:00
commit e17b7026fd
8881 changed files with 1160453 additions and 0 deletions

View File

@@ -0,0 +1 @@
<html><body></body></html>

View File

@@ -0,0 +1,28 @@
CREATE TABLE IF NOT EXISTS `#__employees_` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`order` INT(11) NULL DEFAULT 0,
`created_by` INT(11) NULL DEFAULT 0,
`modified_by` INT(11) NULL DEFAULT 0,
`name` VARCHAR(100) NOT NULL ,
`contact_data` TEXT NULL ,
`position` VARCHAR(100) NULL DEFAULT "",
`description` TEXT NULL ,
`avatar` TEXT NULL ,
`achievements` TEXT NULL ,
`achievements_label` VARCHAR(100) NULL DEFAULT "",
`publications` TEXT NULL ,
`social_linkedin` VARCHAR(100) NULL DEFAULT "",
`social_facebook` VARCHAR(100) NULL DEFAULT "",
`social_instagram` VARCHAR(100) NULL DEFAULT "",
`social_twitter` VARCHAR(100) NULL DEFAULT "",
`alias` VARCHAR(255) COLLATE utf8_bin NULL ,
`language` VARCHAR(255) NULL DEFAULT "",
`url` VARCHAR(255) NULL DEFAULT "",
PRIMARY KEY (`id`)
,KEY `idx_created_by` (`created_by`)
,KEY `idx_modified_by` (`modified_by`)
) DEFAULT COLLATE=utf8mb4_unicode_ci;
CREATE INDEX `#__employees__language` ON `#__employees_`(`language`);

View File

@@ -0,0 +1 @@
DROP TABLE IF EXISTS `#__employees_`;

View File

@@ -0,0 +1 @@
/* Only premium users are allowed to update a component */

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<schema>
<!-- Metadata -->
<meta>
<!-- Supported driver types -->
<drivers>
<driver>mysql</driver>
<driver>mysqli</driver>
<driver>pdomysql</driver>
</drivers>
</meta>
<sql>
</sql>
</schema>