-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -289,7 +289,7 @@ INSERT INTO `rex_config` VALUES | |
('developer','actions','true'), | ||
('developer','delete','true'), | ||
('developer','dir_suffix','true'), | ||
('developer','items','{\"templates\":{\"1\":1582306440,\"2\":1582379710,\"3\":1582324983,\"4\":1582324946,\"5\":1582325775,\"6\":1582306946,\"7\":1,\"8\":1582403611,\"9\":1582380569,\"10\":1},\"modules\":{\"1\":1582307108,\"2\":1,\"3\":1,\"4\":1,\"5\":1,\"6\":1,\"7\":1,\"8\":1,\"9\":1582315237,\"10\":1,\"11\":1,\"12\":1}}'), | ||
('developer','items','{\"templates\":{\"1\":1582306440,\"2\":1582379710,\"3\":1582324983,\"4\":1582324946,\"5\":1582325775,\"6\":1671013908,\"7\":1,\"8\":1582403611,\"9\":1582380569,\"10\":1},\"modules\":{\"1\":1582307108,\"2\":1,\"3\":1,\"4\":1,\"5\":1,\"6\":1,\"7\":1,\"8\":1671014540,\"9\":1582315237,\"10\":1,\"11\":1,\"12\":1}}'), | ||
('developer','modules','true'), | ||
('developer','prefix','false'), | ||
('developer','rename','true'), | ||
|
@@ -747,7 +747,7 @@ CREATE TABLE `rex_ycom_user` ( | |
LOCK TABLES `rex_ycom_user` WRITE; | ||
/*!40000 ALTER TABLE `rex_ycom_user` DISABLE KEYS */; | ||
INSERT INTO `rex_ycom_user` VALUES | ||
(1,'[email protected]','[email protected]','$2y$10$n6c2tOKE9hkR.4CdtY7X0ORmjgLwpXqHgvXgUDHcLbAuBto1zh7Uy','Hans','Trapper','1','922616b4879f1b3a560235852b2c884d','50c2d426d72cfea09b8817c9d6293332',0,0,'2022-12-14 11:56:18','2022-12-14 11:56:14','0000-00-00 00:00:00',0,'1,2','profile_pic1.jpg','Die Natur schickt keine Rechnung. Oder: Der Weg ist das Ziel.',''), | ||
(1,'[email protected]','[email protected]','$2y$10$n6c2tOKE9hkR.4CdtY7X0ORmjgLwpXqHgvXgUDHcLbAuBto1zh7Uy','Hans','Trapper','1','922616b4879f1b3a560235852b2c884d','b3de45b67e03d8c9ba348c7b7df0c89d',0,0,'2022-12-14 15:53:57','2022-12-14 15:53:51','0000-00-00 00:00:00',0,'1,2','profile_pic1.jpg','Die Natur schickt keine Rechnung. Oder: Der Weg ist das Ziel.',''), | ||
(2,'[email protected]','[email protected]','$2y$10$P/ogrT0knSz..4SMCUjpD.PsCbvjWfPsyjzrDW/pQxBIl3Yj.A202','Wanda','Hendrix','1','f58b858a5f50abf3517e4367c4d1f3d9','18b8098cff6f678538335b16c50e1f63',0,0,'2020-02-22 19:02:10','2020-02-22 19:01:30','0000-00-00 00:00:00',0,'1','profile_pic2.jpg','Der frühe Vogel fängt den Wurm. Aber lohnt es sich, dafür aufzustehen?',''), | ||
(3,'[email protected]','[email protected]','$2y$10$4GvwsBjUWcwyWk/GMGy3g.mS.Rf30tqoWDdW7B/sc7lHOhHnA0s5G','Ramus','Bengtson','1','b332b387c6e234b18a970c892ce2b447','400d19e1a9546edd4ca6f41781eaf39b',0,0,'2020-02-22 19:08:22','2020-02-22 19:06:27','0000-00-00 00:00:00',0,'2','profile_pic3.jpg','Lieber einen dicken Bauch vom Saufen, als einen krummen Buckel vom Arbeiten.',''); | ||
/*!40000 ALTER TABLE `rex_ycom_user` ENABLE KEYS */; | ||
|
@@ -756,12 +756,12 @@ UNLOCK TABLES; | |
DROP TABLE IF EXISTS `rex_yform_email_template`; | ||
CREATE TABLE `rex_yform_email_template` ( | ||
`id` int unsigned NOT NULL AUTO_INCREMENT, | ||
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`mail_from` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`mail_from_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`mail_reply_to` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`mail_reply_to_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`mail_from` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`mail_from_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`mail_reply_to` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`mail_reply_to_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`subject` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | ||
`body` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`body_html` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`attachments` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
|
@@ -791,10 +791,10 @@ CREATE TABLE `rex_yform_field` ( | |
`name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`label` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`not_required` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`multiple` text COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`expanded` text COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`choices` text COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`choice_attributes` text COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`multiple` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`expanded` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`choices` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`choice_attributes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`options` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`default` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`size` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
|
@@ -966,11 +966,11 @@ CREATE TABLE `rex_yrewrite_forward` ( | |
`id` int unsigned NOT NULL AUTO_INCREMENT, | ||
`domain_id` int NOT NULL, | ||
`status` int NOT NULL, | ||
`url` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`url` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`article_id` int NOT NULL, | ||
`clang` int NOT NULL, | ||
`extern` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`extern` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`media` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`movetype` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`expiry_date` date DEFAULT NULL, | ||
|