ACC SHELL
-- Adminer 3.3.4 MySQL dump
SET NAMES utf8;
-- SET foreign_key_checks = 0;
SET time_zone = 'SYSTEM';
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
DROP TABLE IF EXISTS `texty`;
CREATE TABLE `texty` (
`id` mediumint(8) unsigned NOT NULL auto_increment,
`parent_id` mediumint(8) unsigned NOT NULL,
`hloubka` mediumint(8) unsigned NOT NULL,
`lft` mediumint(8) unsigned NOT NULL,
`rgt` mediumint(8) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `lft` (`lft`),
KEY `rgt` (`rgt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci;
INSERT INTO `texty` (`id`, `parent_id`, `hloubka`, `lft`, `rgt`) VALUES
(1, 0, 0, 1, 2),
(2, 0, 0, 3, 4);
DROP TABLE IF EXISTS `texty_popis`;
CREATE TABLE `texty_popis` (
`id` mediumint(8) unsigned NOT NULL auto_increment,
`main_id` mediumint(8) unsigned NOT NULL,
`nazev` varchar(1000) collate utf8_czech_ci NOT NULL,
`seo_url` varchar(1000) collate utf8_czech_ci NOT NULL,
`title` varchar(1000) collate utf8_czech_ci NOT NULL,
`keywords` text collate utf8_czech_ci NOT NULL,
`description` text collate utf8_czech_ci NOT NULL,
`anotace` mediumtext collate utf8_czech_ci NOT NULL,
`obsah` mediumtext collate utf8_czech_ci NOT NULL,
`lang` smallint(5) unsigned NOT NULL default '1',
`stav` tinyint(1) unsigned NOT NULL default '1',
`typ` smallint(6) unsigned NOT NULL default '1',
`datum` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `main_id` (`main_id`),
KEY `lang` (`lang`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci;
INSERT INTO `texty_popis` (`id`, `main_id`, `nazev`, `seo_url`, `title`, `keywords`, `description`, `anotace`, `obsah`, `lang`, `stav`, `typ`, `datum`) VALUES
(1, 1, 'Copyright', 'Copyright', '', '', '', '', '<p>Copyright Valvo s.r.o. - prodej outdoorové obuvi 2012. Všechna práva vyhrazena.</p>\r\n<a href=\"#\" class=\"pf\" title=\"pf\">Tvorba www stránek Zlín</a>', 1, 1, 0, '2012-06-03 09:28:46'),
(2, 2, 'Index - text', 'Index - text', '', '', '', '', '<h2>Lorem ipsum dolor consectetuerer</h2>\r\n<p>Lorem ipsum dolor amet, consectetur adipiscing elit. Phasellus ultrices eleifend. Sed nulla ipsum, laoreet et gravida sit amet, tristique vitae libero. Mauris risus justo. Sed scelerisque dapibus mi non lobortis. Sed dolor elit, dapibus facilisis sit amet, auctor quis arcu. Duis facilisis, tellus at iaculis tristique, tortor cursus nibh, eget pellentesque magna metus quis velit. Pellentesque morbi tristique. Lorem ipsum dolor sit amet, consectetur adipiscing elit. ultrices eleifend sagittis. Sed nulla ipsum, laoreet et gravida sit amet, tristique vitae libero. Mauris vitae risus justo. <span>Lorem ipsum dolor amet, consectetur adipicing elit. Phasellus ultrices eleifend sagittis. Sed nulla ipsum, laoreet et gravida sit amet, tristique vitae libero.</span></p>', 1, 1, 0, '2012-06-03 09:29:54');
-- 2012-04-29 12:30:19
ACC SHELL 2018