upgrade bootstrap and js
This commit is contained in:
@@ -88,3 +88,36 @@ Vielen Dank für Ihre Unterstützung.');
|
||||
INSERT INTO 'config' ('key','value') VALUES ('stadt','Hamm');
|
||||
");
|
||||
|
||||
|
||||
|
||||
DROP TABLE IF EXISTS `config`;
|
||||
CREATE TABLE `config` (
|
||||
`key` varchar(50) NOT NULL,
|
||||
`value` text NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
|
||||
|
||||
INSERT INTO `config` (`key`, `value`) VALUES
|
||||
('boolActive', '1'),
|
||||
('boolApprove', '1'),
|
||||
('boolComment', '1'),
|
||||
('boolDefect', '1'),
|
||||
('boolDistrictSelection', '0'),
|
||||
('boolRating', '1'),
|
||||
('boolUpload', '1'),
|
||||
('boolUserinfo', '0'),
|
||||
('contactEmail', 'info@adfc-nrw.de'),
|
||||
('impressum', 'ADFC Landesverband NRW\r\nDüsseldorf\r\n\r\n<a href=\"https://nrw.adfc.de\" target=\"_blank\">www.nrw.adfc.de</a>'),
|
||||
('introText', ' ADFC Meldeportal für die Mitteilung von Anregungen und Ideen zum Radverkehr und der Anzeige von Barrieren, wie Umlaufsperren und Sperrpfosten. '),
|
||||
('logo', 'css/logo_nordrhein_westfalen.png'),
|
||||
('stadt', 'Hamm'),
|
||||
('title', 'Hindernis-Melder des ADFC NRW'),
|
||||
('uploaddir', '/var/www/html/images/'),
|
||||
('url', 'https://nrw.adfc.de'),
|
||||
('UrlBez', 'ADFC Landesverband NRW');
|
||||
|
||||
|
||||
ALTER TABLE `config`
|
||||
ADD PRIMARY KEY (`key`);
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user