diff --git a/db_instances/db_instance.sql b/db_instances/db_instance.sql index e486c02..dabb59d 100644 --- a/db_instances/db_instance.sql +++ b/db_instances/db_instance.sql @@ -1,32 +1,28 @@ --- phpMyAdmin SQL Dump --- version 3.5.2.2 --- http://www.phpmyadmin.net +-- MySQL dump 10.16 Distrib 10.1.28-MariaDB, for Win32 (AMD64) -- --- Φιλοξενητής: 127.0.0.1 --- Χρόνος δημιουργίας: 01 Μάη 2013 στις 09:20:34 --- Έκδοση διακομιστή: 5.5.27 --- Έκδοση PHP: 5.4.7 - -SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -SET time_zone = "+00:00"; - +-- Host: localhost Database: skeleton +-- ------------------------------------------------------ +-- Server version 10.1.28-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- --- Βάση: `skeleton` +-- Table structure for table `actions` -- --- -------------------------------------------------------- - --- --- Δομή πίνακα για τον πίνακα `actions` --- - -CREATE TABLE IF NOT EXISTS `actions` ( +DROP TABLE IF EXISTS `actions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `actions` ( `aid` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Primary Key: Unique actions ID.', `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The object that that action acts on (node, user, comment, system or custom types.)', `callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The callback function that executes when the action runs.', @@ -34,47 +30,53 @@ CREATE TABLE IF NOT EXISTS `actions` ( `label` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Label of the action.', PRIMARY KEY (`aid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores action information.'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `actions` +-- Dumping data for table `actions` -- -INSERT INTO `actions` (`aid`, `type`, `callback`, `parameters`, `label`) VALUES -('comment_publish_action', 'comment', 'comment_publish_action', '', 'Publish comment'), -('comment_save_action', 'comment', 'comment_save_action', '', 'Save comment'), -('comment_unpublish_action', 'comment', 'comment_unpublish_action', '', 'Unpublish comment'), -('node_make_sticky_action', 'node', 'node_make_sticky_action', '', 'Make content sticky'), -('node_make_unsticky_action', 'node', 'node_make_unsticky_action', '', 'Make content unsticky'), -('node_promote_action', 'node', 'node_promote_action', '', 'Promote content to front page'), -('node_publish_action', 'node', 'node_publish_action', '', 'Publish content'), -('node_save_action', 'node', 'node_save_action', '', 'Save content'), -('node_unpromote_action', 'node', 'node_unpromote_action', '', 'Remove content from front page'), -('node_unpublish_action', 'node', 'node_unpublish_action', '', 'Unpublish content'), -('system_block_ip_action', 'user', 'system_block_ip_action', '', 'Ban IP address of current user'), -('user_block_user_action', 'user', 'user_block_user_action', '', 'Block current user'); - --- -------------------------------------------------------- +LOCK TABLES `actions` WRITE; +/*!40000 ALTER TABLE `actions` DISABLE KEYS */; +INSERT INTO `actions` VALUES ('comment_publish_action','comment','comment_publish_action','','Publish comment'),('comment_save_action','comment','comment_save_action','','Save comment'),('comment_unpublish_action','comment','comment_unpublish_action','','Unpublish comment'),('node_make_sticky_action','node','node_make_sticky_action','','Make content sticky'),('node_make_unsticky_action','node','node_make_unsticky_action','','Make content unsticky'),('node_promote_action','node','node_promote_action','','Promote content to front page'),('node_publish_action','node','node_publish_action','','Publish content'),('node_save_action','node','node_save_action','','Save content'),('node_unpromote_action','node','node_unpromote_action','','Remove content from front page'),('node_unpublish_action','node','node_unpublish_action','','Unpublish content'),('system_block_ip_action','user','system_block_ip_action','','Ban IP address of current user'),('user_block_user_action','user','user_block_user_action','','Block current user'); +/*!40000 ALTER TABLE `actions` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `authmap` +-- Table structure for table `authmap` -- -CREATE TABLE IF NOT EXISTS `authmap` ( +DROP TABLE IF EXISTS `authmap`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `authmap` ( `aid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique authmap ID.', `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'User’s users.uid.', `authname` varchar(128) NOT NULL DEFAULT '' COMMENT 'Unique authentication name.', `module` varchar(128) NOT NULL DEFAULT '' COMMENT 'Module which is controlling the authentication.', PRIMARY KEY (`aid`), - UNIQUE KEY `authname` (`authname`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores distributed authentication mapping.' AUTO_INCREMENT=1 ; + UNIQUE KEY `authname` (`authname`), + KEY `uid_module` (`uid`,`module`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores distributed authentication mapping.'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `authmap` +-- + +LOCK TABLES `authmap` WRITE; +/*!40000 ALTER TABLE `authmap` DISABLE KEYS */; +/*!40000 ALTER TABLE `authmap` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `batch` +-- Table structure for table `batch` -- -CREATE TABLE IF NOT EXISTS `batch` ( +DROP TABLE IF EXISTS `batch`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `batch` ( `bid` int(10) unsigned NOT NULL COMMENT 'Primary Key: Unique batch ID.', `token` varchar(64) NOT NULL COMMENT 'A string token generated against the current user’s session id and the batch id, used to ensure that only the user who submitted the batch can effectively access it.', `timestamp` int(11) NOT NULL COMMENT 'A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.', @@ -82,14 +84,25 @@ CREATE TABLE IF NOT EXISTS `batch` ( PRIMARY KEY (`bid`), KEY `token` (`token`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores details about batches (processes that run in...'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `batch` +-- + +LOCK TABLES `batch` WRITE; +/*!40000 ALTER TABLE `batch` DISABLE KEYS */; +/*!40000 ALTER TABLE `batch` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `block` +-- Table structure for table `block` -- -CREATE TABLE IF NOT EXISTS `block` ( +DROP TABLE IF EXISTS `block`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `block` ( `bid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique block ID.', `module` varchar(64) NOT NULL DEFAULT '' COMMENT 'The module from which the block originates; for example, ’user’ for the Who’s Online block, and ’block’ for any custom blocks.', `delta` varchar(32) NOT NULL DEFAULT '0' COMMENT 'Unique ID for block within a module.', @@ -100,197 +113,133 @@ CREATE TABLE IF NOT EXISTS `block` ( `custom` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Flag to indicate how users may control visibility of the block. (0 = Users cannot control, 1 = On by default, but can be hidden, 2 = Hidden by default, but can be shown)', `visibility` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Flag to indicate how to show blocks on pages. (0 = Show on all pages except listed pages, 1 = Show only on listed pages, 2 = Use custom PHP code to determine visibility)', `pages` text NOT NULL COMMENT 'Contents of the "Pages" block; contains either a list of paths on which to include/exclude the block or PHP code, depending on "visibility" setting.', - `title` varchar(64) NOT NULL DEFAULT '' COMMENT 'Custom title for the block. (Empty string will use block default title, will remove the title, text will cause block to use specified title.)', + `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'Custom title for the block. (Empty string will use block default title, will remove the title, text will cause block to use specified title.)', `cache` tinyint(4) NOT NULL DEFAULT '1' COMMENT 'Binary flag to indicate block cache mode. (-2: Custom cache, -1: Do not cache, 1: Cache per role, 2: Cache per user, 4: Cache per page, 8: Block cache global) See DRUPAL_CACHE_* constants in ../includes/common.inc for more detailed information.', PRIMARY KEY (`bid`), UNIQUE KEY `tmd` (`theme`,`module`,`delta`), KEY `list` (`theme`,`status`,`region`,`weight`,`module`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores block settings, such as region and visibility...' AUTO_INCREMENT=105 ; - --- --- Άδειασμα δεδομένων του πίνακα `block` --- - -INSERT INTO `block` (`bid`, `module`, `delta`, `theme`, `status`, `weight`, `region`, `custom`, `visibility`, `pages`, `title`, `cache`) VALUES -(1, 'system', 'main', 'bartik', 1, 0, 'content', 0, 0, '', '', -1), -(2, 'search', 'form', 'bartik', 0, -1, '-1', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', 'Search', -1), -(3, 'node', 'recent', 'seven', 1, 10, 'dashboard_main', 0, 0, '', '', -1), -(4, 'user', 'login', 'bartik', 1, 0, 'sidebar_first', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(5, 'system', 'navigation', 'bartik', 1, 0, 'sidebar_first', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(6, 'system', 'powered-by', 'bartik', 1, 10, 'footer', 0, 0, '', '', -1), -(7, 'system', 'help', 'bartik', 1, 0, 'help', 0, 0, '', '', -1), -(8, 'system', 'main', 'seven', 1, 0, 'content', 0, 0, '', '', -1), -(9, 'system', 'help', 'seven', 1, 0, 'help', 0, 0, '', '', -1), -(10, 'user', 'login', 'seven', 1, 10, 'content', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(11, 'user', 'new', 'seven', 1, 0, 'dashboard_sidebar', 0, 0, '', '', -1), -(12, 'search', 'form', 'seven', 1, -10, 'dashboard_inactive', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', 'Search', -1), -(13, 'comment', 'recent', 'bartik', 0, 0, '-1', 0, 0, '', '', 1), -(14, 'node', 'syndicate', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(15, 'node', 'recent', 'bartik', 0, 0, '-1', 0, 0, '', '', 1), -(16, 'shortcut', 'shortcuts', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(17, 'system', 'management', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(18, 'system', 'user-menu', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(19, 'system', 'main-menu', 'bartik', 0, 0, '-1', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(20, 'user', 'new', 'bartik', 0, 0, '-1', 0, 0, '', '', 1), -(21, 'user', 'online', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(22, 'comment', 'recent', 'seven', 1, 0, 'dashboard_inactive', 0, 0, '', '', 1), -(23, 'node', 'syndicate', 'seven', 0, 0, '-1', 0, 0, '', '', -1), -(24, 'shortcut', 'shortcuts', 'seven', 0, 0, '-1', 0, 0, '', '', -1), -(25, 'system', 'powered-by', 'seven', 0, 10, '-1', 0, 0, '', '', -1), -(26, 'system', 'navigation', 'seven', 0, 0, '-1', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(27, 'system', 'management', 'seven', 0, 0, '-1', 0, 0, '', '', -1), -(28, 'system', 'user-menu', 'seven', 0, 0, '-1', 0, 0, '', '', -1), -(29, 'system', 'main-menu', 'seven', 0, 0, '-1', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(30, 'user', 'online', 'seven', 1, 0, 'dashboard_inactive', 0, 0, '', '', -1), -(31, 'comment', 'recent', 'skeleton', 0, -6, '-1', 0, 0, '', '', 1), -(32, 'node', 'recent', 'skeleton', 0, -5, '-1', 0, 0, '', '', 1), -(33, 'node', 'syndicate', 'skeleton', 0, -3, '-1', 0, 0, '', '', -1), -(34, 'search', 'form', 'skeleton', 1, -10, 'sidebar_first', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', 'Search', -1), -(35, 'shortcut', 'shortcuts', 'skeleton', 0, -4, '-1', 0, 0, '', '', -1), -(36, 'system', 'help', 'skeleton', 1, -11, 'help', 0, 0, '', '', -1), -(37, 'system', 'main', 'skeleton', 1, 0, 'content', 0, 0, '', '', -1), -(38, 'system', 'main-menu', 'skeleton', 1, -12, 'sidebar_first', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(39, 'system', 'management', 'skeleton', 0, -8, '-1', 0, 0, '', '', -1), -(40, 'system', 'navigation', 'skeleton', 1, -11, 'sidebar_first', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(41, 'system', 'powered-by', 'skeleton', 0, -12, '-1', 0, 0, '', '', -1), -(42, 'system', 'user-menu', 'skeleton', 0, -2, '-1', 0, 0, '', '', -1), -(43, 'user', 'login', 'skeleton', 1, -9, 'sidebar_first', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(44, 'user', 'new', 'skeleton', 0, -11, '-1', 0, 0, '', '', 1), -(45, 'user', 'online', 'skeleton', 0, -11, '-1', 0, 0, '', '', -1), -(46, 'block', '1', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(47, 'block', '1', 'seven', 0, 0, '-1', 0, 0, '', '', -1), -(48, 'block', '1', 'skeleton', 1, -12, 'featured_left', 0, 0, '', '', -1), -(49, 'block', '2', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(50, 'block', '2', 'seven', 0, 0, '-1', 0, 0, '', '', -1), -(51, 'block', '2', 'skeleton', 1, -12, 'featured_right', 0, 0, '', '', -1), -(52, 'block', '3', 'bartik', 0, 0, '-1', 0, 0, '', 'Footer Block One', -1), -(53, 'block', '3', 'seven', 0, 0, '-1', 0, 0, '', 'Footer Block One', -1), -(54, 'block', '3', 'skeleton', 1, -10, 'footer_first', 0, 0, '', 'Footer Block One', -1), -(55, 'block', '4', 'bartik', 0, 0, '-1', 0, 0, '', 'Footer Block Two', -1), -(56, 'block', '4', 'seven', 0, 0, '-1', 0, 0, '', 'Footer Block Two', -1), -(57, 'block', '4', 'skeleton', 1, 0, 'footer_second', 0, 0, '', 'Footer Block Two', -1), -(58, 'block', '5', 'bartik', 0, 0, '-1', 0, 0, '', 'Footer Block Three', -1), -(59, 'block', '5', 'seven', 0, 0, '-1', 0, 0, '', 'Footer Block Three', -1), -(60, 'block', '5', 'skeleton', 1, -9, 'footer_third', 0, 0, '', 'Footer Block Three', -1), -(61, 'blog', 'recent', 'bartik', 0, 0, '-1', 0, 0, '', '', 1), -(62, 'blog', 'recent', 'seven', 1, 0, 'dashboard_inactive', 0, 0, '', '', 1), -(63, 'blog', 'recent', 'skeleton', 0, 0, '-1', 0, 0, '', '', 1), -(64, 'forum', 'active', 'bartik', 0, 0, '-1', 0, 0, '', '', -2), -(65, 'forum', 'new', 'bartik', 0, 0, '-1', 0, 0, '', '', -2), -(66, 'forum', 'active', 'seven', 1, 0, 'dashboard_inactive', 0, 0, '', '', -2), -(67, 'forum', 'new', 'seven', 1, 0, 'dashboard_inactive', 0, 0, '', '', -2), -(68, 'forum', 'active', 'skeleton', 0, 0, '-1', 0, 0, '', '', -2), -(69, 'forum', 'new', 'skeleton', 0, 0, '-1', 0, 0, '', '', -2), -(70, 'block', '1', 'skeletontheme', 1, -12, 'featured_left', 0, 0, '', '', -1), -(71, 'block', '2', 'skeletontheme', 1, -12, 'featured_right', 0, 0, '', '', -1), -(72, 'block', '3', 'skeletontheme', 1, -10, 'footer_first', 0, 0, '', 'Footer Block One', -1), -(73, 'block', '4', 'skeletontheme', 1, 0, 'footer_second', 0, 0, '', 'Footer Block Two', -1), -(74, 'block', '5', 'skeletontheme', 1, -9, 'footer_third', 0, 0, '', 'Footer Block Three', -1), -(75, 'blog', 'recent', 'skeletontheme', 0, 0, '-1', 0, 0, '', '', 1), -(76, 'comment', 'recent', 'skeletontheme', 0, -6, '-1', 0, 0, '', '', 1), -(77, 'forum', 'active', 'skeletontheme', 0, 0, '-1', 0, 0, '', '', -2), -(78, 'forum', 'new', 'skeletontheme', 0, 0, '-1', 0, 0, '', '', -2), -(79, 'node', 'recent', 'skeletontheme', 0, -5, '-1', 0, 0, '', '', 1), -(80, 'node', 'syndicate', 'skeletontheme', 0, -11, '-1', 0, 0, '', '', -1), -(81, 'search', 'form', 'skeletontheme', 1, -13, 'sidebar_first', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', 'Search', -1), -(82, 'shortcut', 'shortcuts', 'skeletontheme', 0, -4, '-1', 0, 0, '', '', -1), -(83, 'system', 'help', 'skeletontheme', 1, -11, 'help', 0, 0, '', '', -1), -(84, 'system', 'main', 'skeletontheme', 1, -12, 'content', 0, 0, '', '', -1), -(85, 'system', 'main-menu', 'skeletontheme', 1, -14, 'sidebar_first', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(86, 'system', 'management', 'skeletontheme', 0, -8, '-1', 0, 0, '', '', -1), -(87, 'system', 'navigation', 'skeletontheme', 1, -14, 'sidebar_first', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(88, 'system', 'powered-by', 'skeletontheme', 0, -12, '-1', 0, 0, '', '', -1), -(89, 'system', 'user-menu', 'skeletontheme', 0, -2, '-1', 0, 0, '', '', -1), -(90, 'user', 'login', 'skeletontheme', 1, -12, 'sidebar_first', 0, 0, '\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*', '', -1), -(91, 'user', 'new', 'skeletontheme', 0, -11, '-1', 0, 0, '', '', 1), -(92, 'user', 'online', 'skeletontheme', 0, -11, '-1', 0, 0, '', '', -1), -(93, 'superfish', '1', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(94, 'superfish', '2', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(95, 'superfish', '3', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(96, 'superfish', '4', 'bartik', 0, 0, '-1', 0, 0, '', '', -1), -(97, 'superfish', '1', 'seven', 0, 0, '-1', 0, 0, '', '', -1), -(98, 'superfish', '2', 'seven', 0, 0, '-1', 0, 0, '', '', -1), -(99, 'superfish', '3', 'seven', 0, 0, '-1', 0, 0, '', '', -1), -(100, 'superfish', '4', 'seven', 0, 0, '-1', 0, 0, '', '', -1), -(101, 'superfish', '1', 'skeletontheme', 1, -14, 'header', 0, 0, '', '', -1), -(102, 'superfish', '2', 'skeletontheme', 0, 0, '-1', 0, 0, '', '', -1), -(103, 'superfish', '3', 'skeletontheme', 0, 0, '-1', 0, 0, '', '', -1), -(104, 'superfish', '4', 'skeletontheme', 0, 0, '-1', 0, 0, '', '', -1); - --- -------------------------------------------------------- - --- --- Δομή πίνακα για τον πίνακα `blocked_ips` --- - -CREATE TABLE IF NOT EXISTS `blocked_ips` ( - `iid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: unique ID for IP addresses.', - `ip` varchar(40) NOT NULL DEFAULT '' COMMENT 'IP address', - PRIMARY KEY (`iid`), - KEY `blocked_ip` (`ip`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores blocked IP addresses.' AUTO_INCREMENT=1 ; +) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=utf8 COMMENT='Stores block settings, such as region and visibility...'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `block` +-- + +LOCK TABLES `block` WRITE; +/*!40000 ALTER TABLE `block` DISABLE KEYS */; +INSERT INTO `block` VALUES (1,'system','main','bartik',1,0,'content',0,0,'','',-1),(2,'search','form','bartik',0,-1,'-1',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','Search',-1),(3,'node','recent','seven',1,10,'dashboard_main',0,0,'','',-1),(4,'user','login','bartik',1,0,'sidebar_first',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(5,'system','navigation','bartik',1,0,'sidebar_first',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(6,'system','powered-by','bartik',1,10,'footer',0,0,'','',-1),(7,'system','help','bartik',1,0,'help',0,0,'','',-1),(8,'system','main','seven',1,0,'content',0,0,'','',-1),(9,'system','help','seven',1,0,'help',0,0,'','',-1),(10,'user','login','seven',1,10,'content',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(11,'user','new','seven',1,0,'dashboard_sidebar',0,0,'','',-1),(12,'search','form','seven',1,-10,'dashboard_inactive',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','Search',-1),(13,'comment','recent','bartik',0,0,'-1',0,0,'','',1),(14,'node','syndicate','bartik',0,0,'-1',0,0,'','',-1),(15,'node','recent','bartik',0,0,'-1',0,0,'','',1),(16,'shortcut','shortcuts','bartik',0,0,'-1',0,0,'','',-1),(17,'system','management','bartik',0,0,'-1',0,0,'','',-1),(18,'system','user-menu','bartik',0,0,'-1',0,0,'','',-1),(19,'system','main-menu','bartik',0,0,'-1',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(20,'user','new','bartik',0,0,'-1',0,0,'','',1),(21,'user','online','bartik',0,0,'-1',0,0,'','',-1),(22,'comment','recent','seven',1,0,'dashboard_inactive',0,0,'','',1),(23,'node','syndicate','seven',0,0,'-1',0,0,'','',-1),(24,'shortcut','shortcuts','seven',0,0,'-1',0,0,'','',-1),(25,'system','powered-by','seven',0,10,'-1',0,0,'','',-1),(26,'system','navigation','seven',0,0,'-1',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(27,'system','management','seven',0,0,'-1',0,0,'','',-1),(28,'system','user-menu','seven',0,0,'-1',0,0,'','',-1),(29,'system','main-menu','seven',0,0,'-1',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(30,'user','online','seven',1,0,'dashboard_inactive',0,0,'','',-1),(31,'comment','recent','skeleton',0,-6,'-1',0,0,'','',1),(32,'node','recent','skeleton',0,-5,'-1',0,0,'','',1),(33,'node','syndicate','skeleton',0,-3,'-1',0,0,'','',-1),(34,'search','form','skeleton',1,-10,'sidebar_first',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','Search',-1),(35,'shortcut','shortcuts','skeleton',0,-4,'-1',0,0,'','',-1),(36,'system','help','skeleton',1,-11,'help',0,0,'','',-1),(37,'system','main','skeleton',1,0,'content',0,0,'','',-1),(38,'system','main-menu','skeleton',1,-12,'sidebar_first',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(39,'system','management','skeleton',0,-8,'-1',0,0,'','',-1),(40,'system','navigation','skeleton',1,-11,'sidebar_first',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(41,'system','powered-by','skeleton',0,-12,'-1',0,0,'','',-1),(42,'system','user-menu','skeleton',0,-2,'-1',0,0,'','',-1),(43,'user','login','skeleton',1,-9,'sidebar_first',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(44,'user','new','skeleton',0,-11,'-1',0,0,'','',1),(45,'user','online','skeleton',0,-11,'-1',0,0,'','',-1),(46,'block','1','bartik',0,0,'-1',0,0,'','',-1),(47,'block','1','seven',0,0,'-1',0,0,'','',-1),(48,'block','1','skeleton',1,-12,'featured_left',0,0,'','',-1),(49,'block','2','bartik',0,0,'-1',0,0,'','',-1),(50,'block','2','seven',0,0,'-1',0,0,'','',-1),(51,'block','2','skeleton',1,-12,'featured_right',0,0,'','',-1),(52,'block','3','bartik',0,0,'-1',0,0,'','Footer Block One',-1),(53,'block','3','seven',0,0,'-1',0,0,'','Footer Block One',-1),(54,'block','3','skeleton',1,-10,'footer_first',0,0,'','Footer Block One',-1),(55,'block','4','bartik',0,0,'-1',0,0,'','Footer Block Two',-1),(56,'block','4','seven',0,0,'-1',0,0,'','Footer Block Two',-1),(57,'block','4','skeleton',1,0,'footer_second',0,0,'','Footer Block Two',-1),(58,'block','5','bartik',0,0,'-1',0,0,'','Footer Block Three',-1),(59,'block','5','seven',0,0,'-1',0,0,'','Footer Block Three',-1),(60,'block','5','skeleton',1,-9,'footer_third',0,0,'','Footer Block Three',-1),(61,'blog','recent','bartik',0,0,'-1',0,0,'','',1),(62,'blog','recent','seven',1,0,'dashboard_inactive',0,0,'','',1),(63,'blog','recent','skeleton',0,0,'-1',0,0,'','',1),(64,'forum','active','bartik',0,0,'-1',0,0,'','',-2),(65,'forum','new','bartik',0,0,'-1',0,0,'','',-2),(66,'forum','active','seven',1,0,'dashboard_inactive',0,0,'','',-2),(67,'forum','new','seven',1,0,'dashboard_inactive',0,0,'','',-2),(68,'forum','active','skeleton',0,0,'-1',0,0,'','',-2),(69,'forum','new','skeleton',0,0,'-1',0,0,'','',-2),(70,'block','1','skeletontheme',1,-12,'featured_left',0,0,'','',-1),(71,'block','2','skeletontheme',1,-12,'featured_right',0,0,'','',-1),(72,'block','3','skeletontheme',1,-10,'footer_first',0,0,'','Footer Block One',-1),(73,'block','4','skeletontheme',1,0,'footer_second',0,0,'','Footer Block Two',-1),(74,'block','5','skeletontheme',1,-9,'footer_third',0,0,'','Footer Block Three',-1),(75,'blog','recent','skeletontheme',0,0,'-1',0,0,'','',1),(76,'comment','recent','skeletontheme',0,-6,'-1',0,0,'','',1),(77,'forum','active','skeletontheme',0,0,'-1',0,0,'','',-2),(78,'forum','new','skeletontheme',0,0,'-1',0,0,'','',-2),(79,'node','recent','skeletontheme',0,-5,'-1',0,0,'','',1),(80,'node','syndicate','skeletontheme',0,-11,'-1',0,0,'','',-1),(81,'search','form','skeletontheme',1,-13,'sidebar_first',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','Search',-1),(82,'shortcut','shortcuts','skeletontheme',0,-4,'-1',0,0,'','',-1),(83,'system','help','skeletontheme',1,-11,'help',0,0,'','',-1),(84,'system','main','skeletontheme',1,-12,'content',0,0,'','',-1),(85,'system','main-menu','skeletontheme',1,-14,'sidebar_first',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(86,'system','management','skeletontheme',0,-8,'-1',0,0,'','',-1),(87,'system','navigation','skeletontheme',1,-14,'sidebar_first',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(88,'system','powered-by','skeletontheme',0,-12,'-1',0,0,'','',-1),(89,'system','user-menu','skeletontheme',0,-2,'-1',0,0,'','',-1),(90,'user','login','skeletontheme',1,-12,'sidebar_first',0,0,'\r\nnode/2\r\nnode/8\r\nnode/10\r\nforum*','',-1),(91,'user','new','skeletontheme',0,-11,'-1',0,0,'','',1),(92,'user','online','skeletontheme',0,-11,'-1',0,0,'','',-1),(93,'superfish','1','bartik',0,0,'-1',0,0,'','',-1),(94,'superfish','2','bartik',0,0,'-1',0,0,'','',-1),(95,'superfish','3','bartik',0,0,'-1',0,0,'','',-1),(96,'superfish','4','bartik',0,0,'-1',0,0,'','',-1),(97,'superfish','1','seven',0,0,'-1',0,0,'','',-1),(98,'superfish','2','seven',0,0,'-1',0,0,'','',-1),(99,'superfish','3','seven',0,0,'-1',0,0,'','',-1),(100,'superfish','4','seven',0,0,'-1',0,0,'','',-1),(101,'superfish','1','skeletontheme',1,-14,'header',0,0,'','',-1),(102,'superfish','2','skeletontheme',0,0,'-1',0,0,'','',-1),(103,'superfish','3','skeletontheme',0,0,'-1',0,0,'','',-1),(104,'superfish','4','skeletontheme',0,0,'-1',0,0,'','',-1); +/*!40000 ALTER TABLE `block` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `block_custom` +-- Table structure for table `block_custom` -- -CREATE TABLE IF NOT EXISTS `block_custom` ( +DROP TABLE IF EXISTS `block_custom`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `block_custom` ( `bid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The block’s block.bid.', `body` longtext COMMENT 'Block contents.', `info` varchar(128) NOT NULL DEFAULT '' COMMENT 'Block description.', `format` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the block body.', PRIMARY KEY (`bid`), UNIQUE KEY `info` (`info`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores contents of custom-made blocks.' AUTO_INCREMENT=6 ; +) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Stores contents of custom-made blocks.'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `block_custom` +-- Dumping data for table `block_custom` -- -INSERT INTO `block_custom` (`bid`, `body`, `info`, `format`) VALUES -(1, '
\r\n

Downloads

\r\n

Get started with Skeleton. It’s completely free to use on personal and commercial projects.

\r\n
\r\n\r\n
', 'Downloads (Featured left)', 'php_code'), -(2, '
\r\n

Documentation

\r\n

Learn more about how Skeleton works and how you can customize it to fit your development needs.

\r\n
\r\n\r\n
', 'Documentation (Featured right)', 'php_code'), -(3, 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', 'Footer Block One', 'full_html'), -(4, 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', 'Footer Block Two', 'full_html'), -(5, 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', 'Footer Block Three', 'full_html'); - --- -------------------------------------------------------- +LOCK TABLES `block_custom` WRITE; +/*!40000 ALTER TABLE `block_custom` DISABLE KEYS */; +INSERT INTO `block_custom` VALUES (1,'
\r\n

Downloads

\r\n

/mockup/arrow.png\" alt=\"\">Get started with Skeleton. It’s completely free to use on personal and commercial projects.

\r\n
\r\n\r\n
','Downloads (Featured left)','php_code'),(2,'
\r\n

Documentation

\r\n

/mockup/compass.png\" alt=\"\">Learn more about how Skeleton works and how you can customize it to fit your development needs.

\r\n
\r\n\r\n
','Documentation (Featured right)','php_code'),(3,'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','Footer Block One','full_html'),(4,'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','Footer Block Two','full_html'),(5,'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','Footer Block Three','full_html'); +/*!40000 ALTER TABLE `block_custom` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `block_node_type` +-- Table structure for table `block_node_type` -- -CREATE TABLE IF NOT EXISTS `block_node_type` ( +DROP TABLE IF EXISTS `block_node_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `block_node_type` ( `module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.', `delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.', `type` varchar(32) NOT NULL COMMENT 'The machine-readable name of this type from node_type.type.', PRIMARY KEY (`module`,`delta`,`type`), KEY `type` (`type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sets up display criteria for blocks based on content types'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `block_node_type` +-- + +LOCK TABLES `block_node_type` WRITE; +/*!40000 ALTER TABLE `block_node_type` DISABLE KEYS */; +/*!40000 ALTER TABLE `block_node_type` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `block_role` +-- Table structure for table `block_role` -- -CREATE TABLE IF NOT EXISTS `block_role` ( +DROP TABLE IF EXISTS `block_role`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `block_role` ( `module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.', `delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.', `rid` int(10) unsigned NOT NULL COMMENT 'The user’s role ID from users_roles.rid.', PRIMARY KEY (`module`,`delta`,`rid`), KEY `rid` (`rid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sets up access permissions for blocks based on user roles'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `block_role` +-- + +LOCK TABLES `block_role` WRITE; +/*!40000 ALTER TABLE `block_role` DISABLE KEYS */; +/*!40000 ALTER TABLE `block_role` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache` +-- Table structure for table `blocked_ips` -- -CREATE TABLE IF NOT EXISTS `cache` ( +DROP TABLE IF EXISTS `blocked_ips`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `blocked_ips` ( + `iid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: unique ID for IP addresses.', + `ip` varchar(40) NOT NULL DEFAULT '' COMMENT 'IP address', + PRIMARY KEY (`iid`), + KEY `blocked_ip` (`ip`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores blocked IP addresses.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `blocked_ips` +-- + +LOCK TABLES `blocked_ips` WRITE; +/*!40000 ALTER TABLE `blocked_ips` DISABLE KEYS */; +/*!40000 ALTER TABLE `blocked_ips` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache` +-- + +DROP TABLE IF EXISTS `cache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -299,14 +248,25 @@ CREATE TABLE IF NOT EXISTS `cache` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache` +-- --- -------------------------------------------------------- +LOCK TABLES `cache` WRITE; +/*!40000 ALTER TABLE `cache` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_block` +-- Table structure for table `cache_block` -- -CREATE TABLE IF NOT EXISTS `cache_block` ( +DROP TABLE IF EXISTS `cache_block`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_block` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -315,14 +275,25 @@ CREATE TABLE IF NOT EXISTS `cache_block` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cache table for the Block module to store already built...'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `cache_block` +-- + +LOCK TABLES `cache_block` WRITE; +/*!40000 ALTER TABLE `cache_block` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_block` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_bootstrap` +-- Table structure for table `cache_bootstrap` -- -CREATE TABLE IF NOT EXISTS `cache_bootstrap` ( +DROP TABLE IF EXISTS `cache_bootstrap`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_bootstrap` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -331,14 +302,25 @@ CREATE TABLE IF NOT EXISTS `cache_bootstrap` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cache table for data required to bootstrap Drupal, may be...'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `cache_bootstrap` +-- + +LOCK TABLES `cache_bootstrap` WRITE; +/*!40000 ALTER TABLE `cache_bootstrap` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_bootstrap` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_field` +-- Table structure for table `cache_field` -- -CREATE TABLE IF NOT EXISTS `cache_field` ( +DROP TABLE IF EXISTS `cache_field`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_field` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -347,14 +329,25 @@ CREATE TABLE IF NOT EXISTS `cache_field` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Generic cache table for caching things not separated out...'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `cache_field` +-- + +LOCK TABLES `cache_field` WRITE; +/*!40000 ALTER TABLE `cache_field` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_field` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_filter` +-- Table structure for table `cache_filter` -- -CREATE TABLE IF NOT EXISTS `cache_filter` ( +DROP TABLE IF EXISTS `cache_filter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_filter` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -363,14 +356,25 @@ CREATE TABLE IF NOT EXISTS `cache_filter` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cache table for the Filter module to store already...'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_filter` +-- --- -------------------------------------------------------- +LOCK TABLES `cache_filter` WRITE; +/*!40000 ALTER TABLE `cache_filter` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_filter` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_form` +-- Table structure for table `cache_form` -- -CREATE TABLE IF NOT EXISTS `cache_form` ( +DROP TABLE IF EXISTS `cache_form`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_form` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -379,14 +383,25 @@ CREATE TABLE IF NOT EXISTS `cache_form` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cache table for the form system to store recently built...'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `cache_form` +-- + +LOCK TABLES `cache_form` WRITE; +/*!40000 ALTER TABLE `cache_form` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_form` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_image` +-- Table structure for table `cache_image` -- -CREATE TABLE IF NOT EXISTS `cache_image` ( +DROP TABLE IF EXISTS `cache_image`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_image` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -395,14 +410,25 @@ CREATE TABLE IF NOT EXISTS `cache_image` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cache table used to store information about image...'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `cache_image` +-- + +LOCK TABLES `cache_image` WRITE; +/*!40000 ALTER TABLE `cache_image` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_image` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_libraries` +-- Table structure for table `cache_libraries` -- -CREATE TABLE IF NOT EXISTS `cache_libraries` ( +DROP TABLE IF EXISTS `cache_libraries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_libraries` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -411,14 +437,25 @@ CREATE TABLE IF NOT EXISTS `cache_libraries` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table to store library information.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_libraries` +-- --- -------------------------------------------------------- +LOCK TABLES `cache_libraries` WRITE; +/*!40000 ALTER TABLE `cache_libraries` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_libraries` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_menu` +-- Table structure for table `cache_menu` -- -CREATE TABLE IF NOT EXISTS `cache_menu` ( +DROP TABLE IF EXISTS `cache_menu`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_menu` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -427,14 +464,25 @@ CREATE TABLE IF NOT EXISTS `cache_menu` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cache table for the menu system to store router...'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_menu` +-- --- -------------------------------------------------------- +LOCK TABLES `cache_menu` WRITE; +/*!40000 ALTER TABLE `cache_menu` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_menu` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_page` +-- Table structure for table `cache_page` -- -CREATE TABLE IF NOT EXISTS `cache_page` ( +DROP TABLE IF EXISTS `cache_page`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_page` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -443,14 +491,25 @@ CREATE TABLE IF NOT EXISTS `cache_page` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cache table used to store compressed pages for anonymous...'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_page` +-- --- -------------------------------------------------------- +LOCK TABLES `cache_page` WRITE; +/*!40000 ALTER TABLE `cache_page` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_page` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_path` +-- Table structure for table `cache_path` -- -CREATE TABLE IF NOT EXISTS `cache_path` ( +DROP TABLE IF EXISTS `cache_path`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_path` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -459,14 +518,25 @@ CREATE TABLE IF NOT EXISTS `cache_path` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cache table for path alias lookup.'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `cache_path` +-- + +LOCK TABLES `cache_path` WRITE; +/*!40000 ALTER TABLE `cache_path` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_path` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `cache_update` +-- Table structure for table `cache_update` -- -CREATE TABLE IF NOT EXISTS `cache_update` ( +DROP TABLE IF EXISTS `cache_update`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_update` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', @@ -475,14 +545,25 @@ CREATE TABLE IF NOT EXISTS `cache_update` ( PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cache table for the Update module to store information...'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `cache_update` +-- + +LOCK TABLES `cache_update` WRITE; +/*!40000 ALTER TABLE `cache_update` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_update` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `comment` +-- Table structure for table `comment` -- -CREATE TABLE IF NOT EXISTS `comment` ( +DROP TABLE IF EXISTS `comment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `comment` ( `cid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique comment ID.', `pid` int(11) NOT NULL DEFAULT '0' COMMENT 'The comment.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.', `nid` int(11) NOT NULL DEFAULT '0' COMMENT 'The node.nid to which this comment is a reply.', @@ -503,24 +584,27 @@ CREATE TABLE IF NOT EXISTS `comment` ( KEY `comment_uid` (`uid`), KEY `comment_nid_language` (`nid`,`language`), KEY `comment_created` (`created`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores comments and associated data.' AUTO_INCREMENT=4 ; +) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Stores comments and associated data.'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `comment` +-- Dumping data for table `comment` -- -INSERT INTO `comment` (`cid`, `pid`, `nid`, `uid`, `subject`, `hostname`, `created`, `changed`, `status`, `thread`, `name`, `mail`, `homepage`, `language`) VALUES -(1, 0, 5, 1, 'Just testing!', '127.0.0.1', 1337182623, 1337182621, 1, '01/', 'admin', '', '', 'und'), -(2, 1, 5, 1, 'Test reply!', '127.0.0.1', 1337182672, 1337182670, 1, '01.00/', 'admin', '', '', 'und'), -(3, 0, 6, 1, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit', '127.0.0.1', 1337258199, 1337258198, 1, '01/', 'admin', '', '', 'und'); - --- -------------------------------------------------------- +LOCK TABLES `comment` WRITE; +/*!40000 ALTER TABLE `comment` DISABLE KEYS */; +INSERT INTO `comment` VALUES (1,0,5,1,'Just testing!','127.0.0.1',1337182623,1337182621,1,'01/','admin','','','und'),(2,1,5,1,'Test reply!','127.0.0.1',1337182672,1337182670,1,'01.00/','admin','','','und'),(3,0,6,1,'Lorem ipsum dolor sit amet, consectetur adipisicing elit','127.0.0.1',1337258199,1337258198,1,'01/','admin','','','und'); +/*!40000 ALTER TABLE `comment` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `contact` +-- Table structure for table `contact` -- -CREATE TABLE IF NOT EXISTS `contact` ( +DROP TABLE IF EXISTS `contact`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `contact` ( `cid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique category ID.', `category` varchar(255) NOT NULL DEFAULT '' COMMENT 'Category name.', `recipients` longtext NOT NULL COMMENT 'Comma-separated list of recipient e-mail addresses.', @@ -530,114 +614,104 @@ CREATE TABLE IF NOT EXISTS `contact` ( PRIMARY KEY (`cid`), UNIQUE KEY `category` (`category`), KEY `list` (`weight`,`category`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Contact form category settings.' AUTO_INCREMENT=2 ; +) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Contact form category settings.'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `contact` +-- Dumping data for table `contact` -- -INSERT INTO `contact` (`cid`, `category`, `recipients`, `reply`, `weight`, `selected`) VALUES -(1, 'Website feedback', 'george@morethanthemes.com', '', 0, 1); - --- -------------------------------------------------------- +LOCK TABLES `contact` WRITE; +/*!40000 ALTER TABLE `contact` DISABLE KEYS */; +INSERT INTO `contact` VALUES (1,'Website feedback','george@morethanthemes.com','',0,1); +/*!40000 ALTER TABLE `contact` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `date_formats` +-- Table structure for table `date_format_locale` -- -CREATE TABLE IF NOT EXISTS `date_formats` ( - `dfid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The date format identifier.', +DROP TABLE IF EXISTS `date_format_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `date_format_locale` ( `format` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The date format string.', `type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.', - `locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Whether or not this format can be modified.', - PRIMARY KEY (`dfid`), - UNIQUE KEY `formats` (`format`,`type`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats.' AUTO_INCREMENT=36 ; - --- --- Άδειασμα δεδομένων του πίνακα `date_formats` --- - -INSERT INTO `date_formats` (`dfid`, `format`, `type`, `locked`) VALUES -(1, 'Y-m-d H:i', 'short', 1), -(2, 'm/d/Y - H:i', 'short', 1), -(3, 'd/m/Y - H:i', 'short', 1), -(4, 'Y/m/d - H:i', 'short', 1), -(5, 'd.m.Y - H:i', 'short', 1), -(6, 'm/d/Y - g:ia', 'short', 1), -(7, 'd/m/Y - g:ia', 'short', 1), -(8, 'Y/m/d - g:ia', 'short', 1), -(9, 'M j Y - H:i', 'short', 1), -(10, 'j M Y - H:i', 'short', 1), -(11, 'Y M j - H:i', 'short', 1), -(12, 'M j Y - g:ia', 'short', 1), -(13, 'j M Y - g:ia', 'short', 1), -(14, 'Y M j - g:ia', 'short', 1), -(15, 'D, Y-m-d H:i', 'medium', 1), -(16, 'D, m/d/Y - H:i', 'medium', 1), -(17, 'D, d/m/Y - H:i', 'medium', 1), -(18, 'D, Y/m/d - H:i', 'medium', 1), -(19, 'F j, Y - H:i', 'medium', 1), -(20, 'j F, Y - H:i', 'medium', 1), -(21, 'Y, F j - H:i', 'medium', 1), -(22, 'D, m/d/Y - g:ia', 'medium', 1), -(23, 'D, d/m/Y - g:ia', 'medium', 1), -(24, 'D, Y/m/d - g:ia', 'medium', 1), -(25, 'F j, Y - g:ia', 'medium', 1), -(26, 'j F Y - g:ia', 'medium', 1), -(27, 'Y, F j - g:ia', 'medium', 1), -(28, 'j. F Y - G:i', 'medium', 1), -(29, 'l, F j, Y - H:i', 'long', 1), -(30, 'l, j F, Y - H:i', 'long', 1), -(31, 'l, Y, F j - H:i', 'long', 1), -(32, 'l, F j, Y - g:ia', 'long', 1), -(33, 'l, j F Y - g:ia', 'long', 1), -(34, 'l, Y, F j - g:ia', 'long', 1), -(35, 'l, j. F Y - G:i', 'long', 1); - --- -------------------------------------------------------- - --- --- Δομή πίνακα για τον πίνακα `date_format_locale` --- - -CREATE TABLE IF NOT EXISTS `date_format_locale` ( - `format` varchar(100) NOT NULL COMMENT 'The date format string.', - `type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.', `language` varchar(12) NOT NULL COMMENT 'A languages.language for this format to be used with.', PRIMARY KEY (`type`,`language`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats for each locale.'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `date_format_locale` +-- + +LOCK TABLES `date_format_locale` WRITE; +/*!40000 ALTER TABLE `date_format_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `date_format_locale` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `date_format_type` +-- Table structure for table `date_format_type` -- -CREATE TABLE IF NOT EXISTS `date_format_type` ( +DROP TABLE IF EXISTS `date_format_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `date_format_type` ( `type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.', `title` varchar(255) NOT NULL COMMENT 'The human readable name of the format type.', `locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Whether or not this is a system provided format.', PRIMARY KEY (`type`), KEY `title` (`title`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores configured date format types.'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `date_format_type` +-- Dumping data for table `date_format_type` -- -INSERT INTO `date_format_type` (`type`, `title`, `locked`) VALUES -('long', 'Long', 1), -('medium', 'Medium', 1), -('short', 'Short', 1); +LOCK TABLES `date_format_type` WRITE; +/*!40000 ALTER TABLE `date_format_type` DISABLE KEYS */; +INSERT INTO `date_format_type` VALUES ('long','Long',1),('medium','Medium',1),('short','Short',1); +/*!40000 ALTER TABLE `date_format_type` ENABLE KEYS */; +UNLOCK TABLES; --- -------------------------------------------------------- +-- +-- Table structure for table `date_formats` +-- + +DROP TABLE IF EXISTS `date_formats`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `date_formats` ( + `dfid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The date format identifier.', + `format` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The date format string.', + `type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.', + `locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Whether or not this format can be modified.', + PRIMARY KEY (`dfid`), + UNIQUE KEY `formats` (`format`,`type`) +) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COMMENT='Stores configured date formats.'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Δομή πίνακα για τον πίνακα `field_config` +-- Dumping data for table `date_formats` -- -CREATE TABLE IF NOT EXISTS `field_config` ( +LOCK TABLES `date_formats` WRITE; +/*!40000 ALTER TABLE `date_formats` DISABLE KEYS */; +INSERT INTO `date_formats` VALUES (1,'Y-m-d H:i','short',1),(2,'m/d/Y - H:i','short',1),(3,'d/m/Y - H:i','short',1),(4,'Y/m/d - H:i','short',1),(5,'d.m.Y - H:i','short',1),(6,'m/d/Y - g:ia','short',1),(7,'d/m/Y - g:ia','short',1),(8,'Y/m/d - g:ia','short',1),(9,'M j Y - H:i','short',1),(10,'j M Y - H:i','short',1),(11,'Y M j - H:i','short',1),(12,'M j Y - g:ia','short',1),(13,'j M Y - g:ia','short',1),(14,'Y M j - g:ia','short',1),(15,'D, Y-m-d H:i','medium',1),(16,'D, m/d/Y - H:i','medium',1),(17,'D, d/m/Y - H:i','medium',1),(18,'D, Y/m/d - H:i','medium',1),(19,'F j, Y - H:i','medium',1),(20,'j F, Y - H:i','medium',1),(21,'Y, F j - H:i','medium',1),(22,'D, m/d/Y - g:ia','medium',1),(23,'D, d/m/Y - g:ia','medium',1),(24,'D, Y/m/d - g:ia','medium',1),(25,'F j, Y - g:ia','medium',1),(26,'j F Y - g:ia','medium',1),(27,'Y, F j - g:ia','medium',1),(28,'j. F Y - G:i','medium',1),(29,'l, F j, Y - H:i','long',1),(30,'l, j F, Y - H:i','long',1),(31,'l, Y, F j - H:i','long',1),(32,'l, F j, Y - g:ia','long',1),(33,'l, j F Y - g:ia','long',1),(34,'l, Y, F j - g:ia','long',1),(35,'l, j. F Y - G:i','long',1); +/*!40000 ALTER TABLE `date_formats` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `field_config` +-- + +DROP TABLE IF EXISTS `field_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_config` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a field', `field_name` varchar(32) NOT NULL COMMENT 'The name of this field. Non-deleted field names are unique, but multiple deleted fields can have the same name.', `type` varchar(128) NOT NULL COMMENT 'The type of this field.', @@ -660,26 +734,27 @@ CREATE TABLE IF NOT EXISTS `field_config` ( KEY `storage_module` (`storage_module`), KEY `type` (`type`), KEY `storage_type` (`storage_type`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ; +) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `field_config` +-- Dumping data for table `field_config` -- -INSERT INTO `field_config` (`id`, `field_name`, `type`, `module`, `active`, `storage_type`, `storage_module`, `storage_active`, `locked`, `data`, `cardinality`, `translatable`, `deleted`) VALUES -(1, 'comment_body', 'text_long', 'text', 1, 'field_sql_storage', 'field_sql_storage', 1, 0, 0x613a363a7b733a31323a22656e746974795f7479706573223b613a313a7b693a303b733a373a22636f6d6d656e74223b7d733a31323a227472616e736c617461626c65223b623a303b733a383a2273657474696e6773223b613a303a7b7d733a373a2273746f72616765223b613a343a7b733a343a2274797065223b733a31373a226669656c645f73716c5f73746f72616765223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a31373a226669656c645f73716c5f73746f72616765223b733a363a22616374697665223b693a313b7d733a31323a22666f726569676e206b657973223b613a313a7b733a363a22666f726d6174223b613a323a7b733a353a227461626c65223b733a31333a2266696c7465725f666f726d6174223b733a373a22636f6c756d6e73223b613a313a7b733a363a22666f726d6174223b733a363a22666f726d6174223b7d7d7d733a373a22696e6465786573223b613a313a7b733a363a22666f726d6174223b613a313a7b693a303b733a363a22666f726d6174223b7d7d7d, 1, 0, 0), -(2, 'body', 'text_with_summary', 'text', 1, 'field_sql_storage', 'field_sql_storage', 1, 0, 0x613a363a7b733a31323a22656e746974795f7479706573223b613a313a7b693a303b733a343a226e6f6465223b7d733a31323a227472616e736c617461626c65223b623a303b733a383a2273657474696e6773223b613a303a7b7d733a373a2273746f72616765223b613a343a7b733a343a2274797065223b733a31373a226669656c645f73716c5f73746f72616765223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a31373a226669656c645f73716c5f73746f72616765223b733a363a22616374697665223b693a313b7d733a31323a22666f726569676e206b657973223b613a313a7b733a363a22666f726d6174223b613a323a7b733a353a227461626c65223b733a31333a2266696c7465725f666f726d6174223b733a373a22636f6c756d6e73223b613a313a7b733a363a22666f726d6174223b733a363a22666f726d6174223b7d7d7d733a373a22696e6465786573223b613a313a7b733a363a22666f726d6174223b613a313a7b693a303b733a363a22666f726d6174223b7d7d7d, 1, 0, 0), -(3, 'field_tags', 'taxonomy_term_reference', 'taxonomy', 1, 'field_sql_storage', 'field_sql_storage', 1, 0, 0x613a373a7b733a383a2273657474696e6773223b613a313a7b733a31343a22616c6c6f7765645f76616c756573223b613a313a7b693a303b613a323a7b733a31303a22766f636162756c617279223b733a343a2274616773223b733a363a22706172656e74223b693a303b7d7d7d733a31323a22656e746974795f7479706573223b613a303a7b7d733a31323a227472616e736c617461626c65223b733a313a2230223b733a373a2273746f72616765223b613a353a7b733a343a2274797065223b733a31373a226669656c645f73716c5f73746f72616765223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a31373a226669656c645f73716c5f73746f72616765223b733a363a22616374697665223b733a313a2231223b733a373a2264657461696c73223b613a313a7b733a333a2273716c223b613a323a7b733a31383a224649454c445f4c4f41445f43555252454e54223b613a313a7b733a32313a226669656c645f646174615f6669656c645f74616773223b613a313a7b733a333a22746964223b733a31343a226669656c645f746167735f746964223b7d7d733a31393a224649454c445f4c4f41445f5245564953494f4e223b613a313a7b733a32353a226669656c645f7265766973696f6e5f6669656c645f74616773223b613a313a7b733a333a22746964223b733a31343a226669656c645f746167735f746964223b7d7d7d7d7d733a31323a22666f726569676e206b657973223b613a313a7b733a333a22746964223b613a323a7b733a353a227461626c65223b733a31383a227461786f6e6f6d795f7465726d5f64617461223b733a373a22636f6c756d6e73223b613a313a7b733a333a22746964223b733a333a22746964223b7d7d7d733a373a22696e6465786573223b613a313a7b733a333a22746964223b613a313a7b693a303b733a333a22746964223b7d7d733a323a226964223b733a313a2233223b7d, -1, 0, 0), -(4, 'field_image', 'image', 'image', 1, 'field_sql_storage', 'field_sql_storage', 1, 0, 0x613a363a7b733a373a22696e6465786573223b613a313a7b733a333a22666964223b613a313a7b693a303b733a333a22666964223b7d7d733a383a2273657474696e6773223b613a323a7b733a31303a227572695f736368656d65223b733a363a227075626c6963223b733a31333a2264656661756c745f696d616765223b623a303b7d733a373a2273746f72616765223b613a343a7b733a343a2274797065223b733a31373a226669656c645f73716c5f73746f72616765223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a31373a226669656c645f73716c5f73746f72616765223b733a363a22616374697665223b693a313b7d733a31323a22656e746974795f7479706573223b613a303a7b7d733a31323a227472616e736c617461626c65223b623a303b733a31323a22666f726569676e206b657973223b613a313a7b733a333a22666964223b613a323a7b733a353a227461626c65223b733a31323a2266696c655f6d616e61676564223b733a373a22636f6c756d6e73223b613a313a7b733a333a22666964223b733a333a22666964223b7d7d7d7d, 1, 0, 0), -(5, 'taxonomy_forums', 'taxonomy_term_reference', 'taxonomy', 1, 'field_sql_storage', 'field_sql_storage', 1, 0, 0x613a363a7b733a383a2273657474696e6773223b613a313a7b733a31343a22616c6c6f7765645f76616c756573223b613a313a7b693a303b613a323a7b733a31303a22766f636162756c617279223b733a363a22666f72756d73223b733a363a22706172656e74223b693a303b7d7d7d733a31323a22656e746974795f7479706573223b613a303a7b7d733a31323a227472616e736c617461626c65223b623a303b733a373a2273746f72616765223b613a343a7b733a343a2274797065223b733a31373a226669656c645f73716c5f73746f72616765223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a31373a226669656c645f73716c5f73746f72616765223b733a363a22616374697665223b693a313b7d733a31323a22666f726569676e206b657973223b613a313a7b733a333a22746964223b613a323a7b733a353a227461626c65223b733a31383a227461786f6e6f6d795f7465726d5f64617461223b733a373a22636f6c756d6e73223b613a313a7b733a333a22746964223b733a333a22746964223b7d7d7d733a373a22696e6465786573223b613a313a7b733a333a22746964223b613a313a7b693a303b733a333a22746964223b7d7d7d, 1, 0, 0); - --- -------------------------------------------------------- +LOCK TABLES `field_config` WRITE; +/*!40000 ALTER TABLE `field_config` DISABLE KEYS */; +INSERT INTO `field_config` VALUES (1,'comment_body','text_long','text',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";b:0;s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0),(2,'body','text_with_summary','text',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}s:12:\"translatable\";b:0;s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0),(3,'field_tags','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:4:\"tags\";s:6:\"parent\";i:0;}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";s:1:\"0\";s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:21:\"field_data_field_tags\";a:1:{s:3:\"tid\";s:14:\"field_tags_tid\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:25:\"field_revision_field_tags\";a:1:{s:3:\"tid\";s:14:\"field_tags_tid\";}}}}}s:12:\"foreign keys\";a:1:{s:3:\"tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}s:2:\"id\";s:1:\"3\";}',-1,0,0),(4,'field_image','image','image',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:7:\"indexes\";a:1:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}}s:8:\"settings\";a:2:{s:10:\"uri_scheme\";s:6:\"public\";s:13:\"default_image\";b:0;}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:12:\"foreign keys\";a:1:{s:3:\"fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:3:\"fid\";s:3:\"fid\";}}}}',1,0,0),(5,'taxonomy_forums','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:6:\"forums\";s:6:\"parent\";i:0;}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:12:\"foreign keys\";a:1:{s:3:\"tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}}',1,0,0); +/*!40000 ALTER TABLE `field_config` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_config_instance` +-- Table structure for table `field_config_instance` -- -CREATE TABLE IF NOT EXISTS `field_config_instance` ( +DROP TABLE IF EXISTS `field_config_instance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_config_instance` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a field instance', `field_id` int(11) NOT NULL COMMENT 'The identifier of the field attached by this instance', `field_name` varchar(32) NOT NULL DEFAULT '', @@ -690,33 +765,27 @@ CREATE TABLE IF NOT EXISTS `field_config_instance` ( PRIMARY KEY (`id`), KEY `field_name_bundle` (`field_name`,`entity_type`,`bundle`), KEY `deleted` (`deleted`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ; +) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `field_config_instance` +-- Dumping data for table `field_config_instance` -- -INSERT INTO `field_config_instance` (`id`, `field_id`, `field_name`, `entity_type`, `bundle`, `data`, `deleted`) VALUES -(1, 1, 'comment_body', 'comment', 'comment_node_page', 0x613a363a7b733a353a226c6162656c223b733a373a22436f6d6d656e74223b733a383a2273657474696e6773223b613a323a7b733a31353a22746578745f70726f63657373696e67223b693a313b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a383a227265717569726564223b623a313b733a373a22646973706c6179223b613a313a7b733a373a2264656661756c74223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a31323a22746578745f64656661756c74223b733a363a22776569676874223b693a303b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a343a2274657874223b7d7d733a363a22776964676574223b613a343a7b733a343a2274797065223b733a31333a22746578745f7465787461726561223b733a383a2273657474696e6773223b613a313a7b733a343a22726f7773223b693a353b7d733a363a22776569676874223b693a303b733a363a226d6f64756c65223b733a343a2274657874223b7d733a31313a226465736372697074696f6e223b733a303a22223b7d, 0), -(2, 2, 'body', 'node', 'page', 0x613a363a7b733a353a226c6162656c223b733a343a22426f6479223b733a363a22776964676574223b613a343a7b733a343a2274797065223b733a32363a22746578745f74657874617265615f776974685f73756d6d617279223b733a383a2273657474696e6773223b613a323a7b733a343a22726f7773223b693a32303b733a31323a2273756d6d6172795f726f7773223b693a353b7d733a363a22776569676874223b693a2d343b733a363a226d6f64756c65223b733a343a2274657874223b7d733a383a2273657474696e6773223b613a333a7b733a31353a22646973706c61795f73756d6d617279223b623a313b733a31353a22746578745f70726f63657373696e67223b693a313b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a373a22646973706c6179223b613a323a7b733a373a2264656661756c74223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a31323a22746578745f64656661756c74223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a343a2274657874223b733a363a22776569676874223b693a303b7d733a363a22746561736572223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a32333a22746578745f73756d6d6172795f6f725f7472696d6d6564223b733a383a2273657474696e6773223b613a313a7b733a31313a227472696d5f6c656e677468223b693a3630303b7d733a363a226d6f64756c65223b733a343a2274657874223b733a363a22776569676874223b693a303b7d7d733a383a227265717569726564223b623a303b733a31313a226465736372697074696f6e223b733a303a22223b7d, 0), -(3, 1, 'comment_body', 'comment', 'comment_node_article', 0x613a363a7b733a353a226c6162656c223b733a373a22436f6d6d656e74223b733a383a2273657474696e6773223b613a323a7b733a31353a22746578745f70726f63657373696e67223b693a313b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a383a227265717569726564223b623a313b733a373a22646973706c6179223b613a313a7b733a373a2264656661756c74223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a31323a22746578745f64656661756c74223b733a363a22776569676874223b693a303b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a343a2274657874223b7d7d733a363a22776964676574223b613a343a7b733a343a2274797065223b733a31333a22746578745f7465787461726561223b733a383a2273657474696e6773223b613a313a7b733a343a22726f7773223b693a353b7d733a363a22776569676874223b693a303b733a363a226d6f64756c65223b733a343a2274657874223b7d733a31313a226465736372697074696f6e223b733a303a22223b7d, 0), -(4, 2, 'body', 'node', 'article', 0x613a363a7b733a353a226c6162656c223b733a343a22426f6479223b733a363a22776964676574223b613a343a7b733a343a2274797065223b733a32363a22746578745f74657874617265615f776974685f73756d6d617279223b733a383a2273657474696e6773223b613a323a7b733a343a22726f7773223b693a32303b733a31323a2273756d6d6172795f726f7773223b693a353b7d733a363a22776569676874223b693a2d343b733a363a226d6f64756c65223b733a343a2274657874223b7d733a383a2273657474696e6773223b613a333a7b733a31353a22646973706c61795f73756d6d617279223b623a313b733a31353a22746578745f70726f63657373696e67223b693a313b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a373a22646973706c6179223b613a323a7b733a373a2264656661756c74223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a31323a22746578745f64656661756c74223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a343a2274657874223b733a363a22776569676874223b693a303b7d733a363a22746561736572223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a32333a22746578745f73756d6d6172795f6f725f7472696d6d6564223b733a383a2273657474696e6773223b613a313a7b733a31313a227472696d5f6c656e677468223b693a3630303b7d733a363a226d6f64756c65223b733a343a2274657874223b733a363a22776569676874223b693a303b7d7d733a383a227265717569726564223b623a303b733a31313a226465736372697074696f6e223b733a303a22223b7d, 0), -(5, 3, 'field_tags', 'node', 'article', 0x613a363a7b733a353a226c6162656c223b733a343a2254616773223b733a31313a226465736372697074696f6e223b733a36333a22456e746572206120636f6d6d612d736570617261746564206c697374206f6620776f72647320746f20646573637269626520796f757220636f6e74656e742e223b733a363a22776964676574223b613a343a7b733a343a2274797065223b733a32313a227461786f6e6f6d795f6175746f636f6d706c657465223b733a363a22776569676874223b693a2d343b733a383a2273657474696e6773223b613a323a7b733a343a2273697a65223b693a36303b733a31373a226175746f636f6d706c6574655f70617468223b733a32313a227461786f6e6f6d792f6175746f636f6d706c657465223b7d733a363a226d6f64756c65223b733a383a227461786f6e6f6d79223b7d733a373a22646973706c6179223b613a323a7b733a373a2264656661756c74223b613a353a7b733a343a2274797065223b733a32383a227461786f6e6f6d795f7465726d5f7265666572656e63655f6c696e6b223b733a363a22776569676874223b693a31303b733a353a226c6162656c223b733a353a2261626f7665223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a383a227461786f6e6f6d79223b7d733a363a22746561736572223b613a353a7b733a343a2274797065223b733a32383a227461786f6e6f6d795f7465726d5f7265666572656e63655f6c696e6b223b733a363a22776569676874223b693a31303b733a353a226c6162656c223b733a353a2261626f7665223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a383a227461786f6e6f6d79223b7d7d733a383a2273657474696e6773223b613a313a7b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a383a227265717569726564223b623a303b7d, 0), -(6, 4, 'field_image', 'node', 'article', 0x613a363a7b733a353a226c6162656c223b733a353a22496d616765223b733a31313a226465736372697074696f6e223b733a34303a2255706c6f616420616e20696d61676520746f20676f207769746820746869732061727469636c652e223b733a383a227265717569726564223b623a303b733a383a2273657474696e6773223b613a383a7b733a31343a2266696c655f6469726563746f7279223b733a31313a226669656c642f696d616765223b733a31353a2266696c655f657874656e73696f6e73223b733a31363a22706e6720676966206a7067206a706567223b733a31323a226d61785f66696c6573697a65223b733a303a22223b733a31343a226d61785f7265736f6c7574696f6e223b733a303a22223b733a31343a226d696e5f7265736f6c7574696f6e223b733a303a22223b733a393a22616c745f6669656c64223b623a313b733a31313a227469746c655f6669656c64223b733a303a22223b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a363a22776964676574223b613a343a7b733a343a2274797065223b733a31313a22696d6167655f696d616765223b733a383a2273657474696e6773223b613a323a7b733a31383a2270726f67726573735f696e64696361746f72223b733a383a227468726f62626572223b733a31393a22707265766965775f696d6167655f7374796c65223b733a393a227468756d626e61696c223b7d733a363a22776569676874223b693a2d313b733a363a226d6f64756c65223b733a353a22696d616765223b7d733a373a22646973706c6179223b613a323a7b733a373a2264656661756c74223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a353a22696d616765223b733a383a2273657474696e6773223b613a323a7b733a31313a22696d6167655f7374796c65223b733a353a226c61726765223b733a31303a22696d6167655f6c696e6b223b733a303a22223b7d733a363a22776569676874223b693a2d313b733a363a226d6f64756c65223b733a353a22696d616765223b7d733a363a22746561736572223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a353a22696d616765223b733a383a2273657474696e6773223b613a323a7b733a31313a22696d6167655f7374796c65223b733a363a226d656469756d223b733a31303a22696d6167655f6c696e6b223b733a373a22636f6e74656e74223b7d733a363a22776569676874223b693a2d313b733a363a226d6f64756c65223b733a353a22696d616765223b7d7d7d, 0), -(7, 1, 'comment_body', 'comment', 'comment_node_blog', 0x613a363a7b733a353a226c6162656c223b733a373a22436f6d6d656e74223b733a383a2273657474696e6773223b613a323a7b733a31353a22746578745f70726f63657373696e67223b693a313b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a383a227265717569726564223b623a313b733a373a22646973706c6179223b613a313a7b733a373a2264656661756c74223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a31323a22746578745f64656661756c74223b733a363a22776569676874223b693a303b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a343a2274657874223b7d7d733a363a22776964676574223b613a343a7b733a343a2274797065223b733a31333a22746578745f7465787461726561223b733a383a2273657474696e6773223b613a313a7b733a343a22726f7773223b693a353b7d733a363a22776569676874223b693a303b733a363a226d6f64756c65223b733a343a2274657874223b7d733a31313a226465736372697074696f6e223b733a303a22223b7d, 0), -(8, 2, 'body', 'node', 'blog', 0x613a363a7b733a353a226c6162656c223b733a343a22426f6479223b733a363a22776964676574223b613a343a7b733a343a2274797065223b733a32363a22746578745f74657874617265615f776974685f73756d6d617279223b733a383a2273657474696e6773223b613a323a7b733a343a22726f7773223b693a32303b733a31323a2273756d6d6172795f726f7773223b693a353b7d733a363a22776569676874223b733a323a222d34223b733a363a226d6f64756c65223b733a343a2274657874223b7d733a383a2273657474696e6773223b613a333a7b733a31353a22646973706c61795f73756d6d617279223b623a313b733a31353a22746578745f70726f63657373696e67223b693a313b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a373a22646973706c6179223b613a323a7b733a373a2264656661756c74223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a31323a22746578745f64656661756c74223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a343a2274657874223b733a363a22776569676874223b693a303b7d733a363a22746561736572223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a32333a22746578745f73756d6d6172795f6f725f7472696d6d6564223b733a383a2273657474696e6773223b613a313a7b733a31313a227472696d5f6c656e677468223b693a3630303b7d733a363a226d6f64756c65223b733a343a2274657874223b733a363a22776569676874223b693a303b7d7d733a383a227265717569726564223b623a303b733a31313a226465736372697074696f6e223b733a303a22223b7d, 0), -(9, 5, 'taxonomy_forums', 'node', 'forum', 0x613a363a7b733a353a226c6162656c223b733a363a22466f72756d73223b733a383a227265717569726564223b623a313b733a363a22776964676574223b613a343a7b733a343a2274797065223b733a31343a226f7074696f6e735f73656c656374223b733a383a2273657474696e6773223b613a303a7b7d733a363a22776569676874223b693a303b733a363a226d6f64756c65223b733a373a226f7074696f6e73223b7d733a373a22646973706c6179223b613a323a7b733a373a2264656661756c74223b613a353a7b733a343a2274797065223b733a32383a227461786f6e6f6d795f7465726d5f7265666572656e63655f6c696e6b223b733a363a22776569676874223b693a31303b733a353a226c6162656c223b733a353a2261626f7665223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a383a227461786f6e6f6d79223b7d733a363a22746561736572223b613a353a7b733a343a2274797065223b733a32383a227461786f6e6f6d795f7465726d5f7265666572656e63655f6c696e6b223b733a363a22776569676874223b693a31303b733a353a226c6162656c223b733a353a2261626f7665223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a383a227461786f6e6f6d79223b7d7d733a383a2273657474696e6773223b613a313a7b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a31313a226465736372697074696f6e223b733a303a22223b7d, 0), -(10, 1, 'comment_body', 'comment', 'comment_node_forum', 0x613a363a7b733a353a226c6162656c223b733a373a22436f6d6d656e74223b733a383a2273657474696e6773223b613a323a7b733a31353a22746578745f70726f63657373696e67223b693a313b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a383a227265717569726564223b623a313b733a373a22646973706c6179223b613a313a7b733a373a2264656661756c74223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a31323a22746578745f64656661756c74223b733a363a22776569676874223b693a303b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a343a2274657874223b7d7d733a363a22776964676574223b613a343a7b733a343a2274797065223b733a31333a22746578745f7465787461726561223b733a383a2273657474696e6773223b613a313a7b733a343a22726f7773223b693a353b7d733a363a22776569676874223b693a303b733a363a226d6f64756c65223b733a343a2274657874223b7d733a31313a226465736372697074696f6e223b733a303a22223b7d, 0), -(11, 2, 'body', 'node', 'forum', 0x613a363a7b733a353a226c6162656c223b733a343a22426f6479223b733a363a22776964676574223b613a343a7b733a343a2274797065223b733a32363a22746578745f74657874617265615f776974685f73756d6d617279223b733a383a2273657474696e6773223b613a323a7b733a343a22726f7773223b693a32303b733a31323a2273756d6d6172795f726f7773223b693a353b7d733a363a22776569676874223b693a313b733a363a226d6f64756c65223b733a343a2274657874223b7d733a383a2273657474696e6773223b613a333a7b733a31353a22646973706c61795f73756d6d617279223b623a313b733a31353a22746578745f70726f63657373696e67223b693a313b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a373a22646973706c6179223b613a323a7b733a373a2264656661756c74223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a31323a22746578745f64656661756c74223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a343a2274657874223b733a363a22776569676874223b693a31313b7d733a363a22746561736572223b613a353a7b733a353a226c6162656c223b733a363a2268696464656e223b733a343a2274797065223b733a32333a22746578745f73756d6d6172795f6f725f7472696d6d6564223b733a383a2273657474696e6773223b613a313a7b733a31313a227472696d5f6c656e677468223b693a3630303b7d733a363a226d6f64756c65223b733a343a2274657874223b733a363a22776569676874223b693a31313b7d7d733a383a227265717569726564223b623a303b733a31313a226465736372697074696f6e223b733a303a22223b7d, 0), -(12, 3, 'field_tags', 'node', 'blog', 0x613a373a7b733a353a226c6162656c223b733a343a2254616773223b733a363a22776964676574223b613a353a7b733a363a22776569676874223b733a323a222d32223b733a343a2274797065223b733a32313a227461786f6e6f6d795f6175746f636f6d706c657465223b733a363a226d6f64756c65223b733a383a227461786f6e6f6d79223b733a363a22616374697665223b693a303b733a383a2273657474696e6773223b613a323a7b733a343a2273697a65223b693a36303b733a31373a226175746f636f6d706c6574655f70617468223b733a32313a227461786f6e6f6d792f6175746f636f6d706c657465223b7d7d733a383a2273657474696e6773223b613a313a7b733a31383a22757365725f72656769737465725f666f726d223b623a303b7d733a373a22646973706c6179223b613a313a7b733a373a2264656661756c74223b613a353a7b733a353a226c6162656c223b733a353a2261626f7665223b733a343a2274797065223b733a32383a227461786f6e6f6d795f7465726d5f7265666572656e63655f6c696e6b223b733a383a2273657474696e6773223b613a303a7b7d733a363a226d6f64756c65223b733a383a227461786f6e6f6d79223b733a363a22776569676874223b693a313b7d7d733a383a227265717569726564223b693a303b733a31313a226465736372697074696f6e223b733a303a22223b733a31333a2264656661756c745f76616c7565223b4e3b7d, 0); - --- -------------------------------------------------------- +LOCK TABLES `field_config_instance` WRITE; +/*!40000 ALTER TABLE `field_config_instance` DISABLE KEYS */; +INSERT INTO `field_config_instance` VALUES (1,1,'comment_body','comment','comment_node_page','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0),(2,2,'body','node','page','a:6:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0),(3,1,'comment_body','comment','comment_node_article','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0),(4,2,'body','node','article','a:6:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0),(5,3,'field_tags','node','article','a:6:{s:5:\"label\";s:4:\"Tags\";s:11:\"description\";s:63:\"Enter a comma-separated list of words to describe your content.\";s:6:\"widget\";a:4:{s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:6:\"weight\";i:-4;s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:6:\"module\";s:8:\"taxonomy\";}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:6:\"teaser\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}}s:8:\"settings\";a:1:{s:18:\"user_register_form\";b:0;}s:8:\"required\";b:0;}',0),(6,4,'field_image','node','article','a:6:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";b:0;s:8:\"settings\";a:8:{s:14:\"file_directory\";s:11:\"field/image\";s:15:\"file_extensions\";s:16:\"png gif jpg jpeg\";s:12:\"max_filesize\";s:0:\"\";s:14:\"max_resolution\";s:0:\"\";s:14:\"min_resolution\";s:0:\"\";s:9:\"alt_field\";b:1;s:11:\"title_field\";s:0:\"\";s:18:\"user_register_form\";b:0;}s:6:\"widget\";a:4:{s:4:\"type\";s:11:\"image_image\";s:8:\"settings\";a:2:{s:18:\"progress_indicator\";s:8:\"throbber\";s:19:\"preview_image_style\";s:9:\"thumbnail\";}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:5:\"large\";s:10:\"image_link\";s:0:\"\";}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:5:\"image\";s:8:\"settings\";a:2:{s:11:\"image_style\";s:6:\"medium\";s:10:\"image_link\";s:7:\"content\";}s:6:\"weight\";i:-1;s:6:\"module\";s:5:\"image\";}}}',0),(7,1,'comment_body','comment','comment_node_blog','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0),(8,2,'body','node','blog','a:6:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";s:2:\"-4\";s:6:\"module\";s:4:\"text\";}s:8:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0),(9,5,'taxonomy_forums','node','forum','a:6:{s:5:\"label\";s:6:\"Forums\";s:8:\"required\";b:1;s:6:\"widget\";a:4:{s:4:\"type\";s:14:\"options_select\";s:8:\"settings\";a:0:{}s:6:\"weight\";i:0;s:6:\"module\";s:7:\"options\";}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:6:\"teaser\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}}s:8:\"settings\";a:1:{s:18:\"user_register_form\";b:0;}s:11:\"description\";s:0:\"\";}',0),(10,1,'comment_body','comment','comment_node_forum','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0),(11,2,'body','node','forum','a:6:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:1;s:6:\"module\";s:4:\"text\";}s:8:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:11;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:11;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0),(12,3,'field_tags','node','blog','a:7:{s:5:\"label\";s:4:\"Tags\";s:6:\"widget\";a:5:{s:6:\"weight\";s:2:\"-2\";s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:6:\"module\";s:8:\"taxonomy\";s:6:\"active\";i:0;s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}}s:8:\"settings\";a:1:{s:18:\"user_register_form\";b:0;}s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:5:\"above\";s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";s:6:\"weight\";i:1;}}s:8:\"required\";i:0;s:11:\"description\";s:0:\"\";s:13:\"default_value\";N;}',0); +/*!40000 ALTER TABLE `field_config_instance` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_data_body` +-- Table structure for table `field_data_body` -- -CREATE TABLE IF NOT EXISTS `field_data_body` ( +DROP TABLE IF EXISTS `field_data_body`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_data_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to', `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', @@ -736,29 +805,26 @@ CREATE TABLE IF NOT EXISTS `field_data_body` ( KEY `language` (`language`), KEY `body_format` (`body_format`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Data storage for field 2 (body)'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `field_data_body` +-- Dumping data for table `field_data_body` -- -INSERT INTO `field_data_body` (`entity_type`, `bundle`, `deleted`, `entity_id`, `revision_id`, `language`, `delta`, `body_value`, `body_summary`, `body_format`) VALUES -('node', 'page', 0, 2, 2, 'und', 0, '
\r\n\r\n
\r\n\r\n
\r\n

This responsive Drupal theme is based on the Skeleton boilerplate and the excellent Skeleton Wordpress Theme . This theme is designed especially with the Drupal 7 in mind.

\r\n\r\n

Skeleton for Drupal has been ported and is supported by More than (just) Themes, as part of our ongoing effort to bring quality themes to Drupal.

\r\n
', '', 'php_code'), -('node', 'page', 0, 3, 3, 'und', 0, '

Overview

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\n

Customization

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\n

Shortcodes

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', '', 'full_html'), -('node', 'blog', 0, 4, 4, 'und', 0, 'There fowl together the fourth seas one creepeth under created. Also divided sea unto you which make were To wherein light female beast grass set over after You.\r\n\r\nVoid void Fruit for open earth kind fruit brought fowl light subdue were be above from. Above their air his him land cattle beginning brought upon male form. Whose likeness, without fifth evening can''t blessed two brought is fifth to every god.\r\n\r\nSigns may so living moveth moved light subdue for, his. Without god lesser second it fowl spirit replenish. Beast a midst, bearing signs first saw creature. Midst earth multiply every.\r\n\r\nFemale shall. Moveth given set saying for our for good after. Saw let be spirit female moved second, dominion creeping. One called female brought wherein Let void the doesn''t god above.\r\n\r\nSixth. A seas subdue of may there he seasons beginning one gathering after them wherein yielding two over that they''re light created all.\r\n\r\nDon''t all void fruit, moved were created fowl. Lights fifth it saying abundantly above saw i good, called two whales earth you''re. A under him have land whales face i sea subdue greater. Shall. Also fish whales herb seas seas fruit air the it have he.', '', 'filtered_html'), -('node', 'blog', 0, 5, 5, 'und', 0, 'There fowl together the fourth seas one creepeth under created. Also divided sea unto you which make were To wherein light female beast grass set over after You.\r\n\r\nVoid void Fruit for open earth kind fruit brought fowl light subdue were be above from. Above their air his him land cattle beginning brought upon male form. Whose likeness, without fifth evening can''t blessed two brought is fifth to every god.\r\n\r\nSigns may so living moveth moved light subdue for, his. Without god lesser second it fowl spirit replenish. Beast a midst, bearing signs first saw creature. Midst earth multiply every.\r\n\r\nFemale shall. Moveth given set saying for our for good after. Saw let be spirit female moved second, dominion creeping. One called female brought wherein Let void the doesn''t god above.\r\n\r\nSixth. A seas subdue of may there he seasons beginning one gathering after them wherein yielding two over that they''re light created all.\r\n\r\nDon''t all void fruit, moved were created fowl. Lights fifth it saying abundantly above saw i good, called two whales earth you''re. A under him have land whales face i sea subdue greater. Shall. Also fish whales herb seas seas fruit air the it have he.', '', 'filtered_html'), -('node', 'page', 0, 7, 7, 'und', 0, 'This theme is released under the GPL license and is available for download in the official project page in drupal.org.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', '', 'filtered_html'), -('node', 'page', 0, 8, 8, 'und', 0, '
\r\ncolor="white"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="gray"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="black"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor="lightblue"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="blue"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="darkblue"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor="lightgreen"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="green"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="darkgreen"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor="lightred"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="red"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="darkred"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor="yellow"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="orange"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="brown"\r\n\r\n\r\n\r\n
\r\n\r\n
', '', 'full_html'), -('node', 'page', 0, 9, 9, 'und', 0, '

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

\r\n\r\n
"Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
\r\n\r\n

Header 2

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Linked Header 2

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Header 3

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Header 4

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Code snippet

\r\n\r\n#header h1 a
\r\ndisplay: block;
\r\nheight: 80px;
\r\nwidth: 300px;
\r\n
\r\n\r\n

Messages

\r\n\r\n
Sample status message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n
Sample error message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n
Sample warning message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n\r\n

Paragraph With Links

\r\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.

\r\n\r\n

Ordered List

\r\n
    \r\n
  1. This is a sample Ordered List.
  2. \r\n
  3. Lorem ipsum dolor sit amet consectetuer.
  4. \r\n
  5. Condimentum quis.
  6. \r\n
  7. Congue Quisque augue elit dolor.\r\n
      \r\n
    1. Something goes here.
    2. \r\n
    3. And another here
    4. \r\n
    5. Then one more
    6. \r\n
    \r\n
  8. \r\n
  9. Congue Quisque augue elit dolor nibh.
  10. \r\n
\r\n\r\n

Unordered List

\r\n
    \r\n
  • This is a sample Unordered List.
  • \r\n
  • Condimentum quis.
  • \r\n
  • Congue Quisque augue elit dolor.\r\n
      \r\n
    • Something goes here.
    • \r\n
    • And another here\r\n
        \r\n
      • Something here as well
      • \r\n
      • Something here as well
      • \r\n
      • Something here as well
      • \r\n
      \r\n
    • \r\n
    • Then one more
    • \r\n
    \r\n
  • \r\n
  • Nunc cursus sem et pretium sapien eget.
  • \r\n
\r\n\r\n

Fieldset

\r\n
Account information
\r\n\r\n

Table

\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Header 1Header 2
row 1, cell 1row 1, cell 2
row 2, cell 1row 2, cell 2
row 3, cell 1row 3, cell 2
', '', 'full_html'), -('node', 'page', 0, 10, 10, 'und', 0, '
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_third last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[two_thirds last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_half]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_half last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
\r\n\r\n
', '', 'full_html'), -('node', 'page', 0, 1, 1, 'und', 0, '
\r\n\r\n
\r\n\r\n
\r\n
\r\n

Skeleton is a powerful, clean, responsive theme ported to Drupal by More Than (just) Themes. If you like this theme, we encourage you to try also of our other Premium and Free Drupal themes.

\r\n\r\n

This theme is build over the Skeleton Boilerplate and was inspired by the excellent Skeleton Wordpress theme which has been designed by Simple themes

\r\n\r\n

Today, people visit your website from a variety of devices ranging from desktop computers, tablets, and smart phones. The average user spends only a few seconds before making a decision to stay on your site or not. Skeleton is a Drupal 7 theme aimed at helping you build simple, uncluttered, useable, and mobile-friendly Drupal sites.

\r\n
', '', 'php_code'); - --- -------------------------------------------------------- +LOCK TABLES `field_data_body` WRITE; +/*!40000 ALTER TABLE `field_data_body` DISABLE KEYS */; +INSERT INTO `field_data_body` VALUES ('node','page',0,2,2,'und',0,'
\r\n/mockup/1312368015_tiger.png\"/>\r\n
\r\n\r\n
\r\n

This responsive Drupal theme is based on the Skeleton boilerplate and the excellent Skeleton Wordpress Theme . This theme is designed especially with the Drupal 7 in mind.

\r\n\r\n

Skeleton for Drupal has been ported and is supported by More than (just) Themes, as part of our ongoing effort to bring quality themes to Drupal.

\r\n
','','php_code'),('node','page',0,3,3,'und',0,'

Overview

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\n

Customization

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\n

Shortcodes

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','','full_html'),('node','blog',0,4,4,'und',0,'There fowl together the fourth seas one creepeth under created. Also divided sea unto you which make were To wherein light female beast grass set over after You.\r\n\r\nVoid void Fruit for open earth kind fruit brought fowl light subdue were be above from. Above their air his him land cattle beginning brought upon male form. Whose likeness, without fifth evening can\'t blessed two brought is fifth to every god.\r\n\r\nSigns may so living moveth moved light subdue for, his. Without god lesser second it fowl spirit replenish. Beast a midst, bearing signs first saw creature. Midst earth multiply every.\r\n\r\nFemale shall. Moveth given set saying for our for good after. Saw let be spirit female moved second, dominion creeping. One called female brought wherein Let void the doesn\'t god above.\r\n\r\nSixth. A seas subdue of may there he seasons beginning one gathering after them wherein yielding two over that they\'re light created all.\r\n\r\nDon\'t all void fruit, moved were created fowl. Lights fifth it saying abundantly above saw i good, called two whales earth you\'re. A under him have land whales face i sea subdue greater. Shall. Also fish whales herb seas seas fruit air the it have he.','','filtered_html'),('node','blog',0,5,5,'und',0,'There fowl together the fourth seas one creepeth under created. Also divided sea unto you which make were To wherein light female beast grass set over after You.\r\n\r\nVoid void Fruit for open earth kind fruit brought fowl light subdue were be above from. Above their air his him land cattle beginning brought upon male form. Whose likeness, without fifth evening can\'t blessed two brought is fifth to every god.\r\n\r\nSigns may so living moveth moved light subdue for, his. Without god lesser second it fowl spirit replenish. Beast a midst, bearing signs first saw creature. Midst earth multiply every.\r\n\r\nFemale shall. Moveth given set saying for our for good after. Saw let be spirit female moved second, dominion creeping. One called female brought wherein Let void the doesn\'t god above.\r\n\r\nSixth. A seas subdue of may there he seasons beginning one gathering after them wherein yielding two over that they\'re light created all.\r\n\r\nDon\'t all void fruit, moved were created fowl. Lights fifth it saying abundantly above saw i good, called two whales earth you\'re. A under him have land whales face i sea subdue greater. Shall. Also fish whales herb seas seas fruit air the it have he.','','filtered_html'),('node','page',0,7,7,'und',0,'This theme is released under the GPL license and is available for download in the official project page in drupal.org.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','','filtered_html'),('node','page',0,8,8,'und',0,'
\r\ncolor=\"white\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"gray\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"black\"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor=\"lightblue\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"blue\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"darkblue\"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor=\"lightgreen\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"green\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"darkgreen\"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor=\"lightred\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"red\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"darkred\"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor=\"yellow\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"orange\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"brown\"\r\n\r\n\r\n\r\n
\r\n\r\n
','','full_html'),('node','page',0,9,9,'und',0,'

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

\r\n\r\n
\"Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"
\r\n\r\n

Header 2

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Linked Header 2

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Header 3

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Header 4

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Code snippet

\r\n\r\n#header h1 a
\r\ndisplay: block;
\r\nheight: 80px;
\r\nwidth: 300px;
\r\n
\r\n\r\n

Messages

\r\n\r\n
Sample status message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n
Sample error message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n
Sample warning message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n\r\n

Paragraph With Links

\r\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.

\r\n\r\n

Ordered List

\r\n
    \r\n
  1. This is a sample Ordered List.
  2. \r\n
  3. Lorem ipsum dolor sit amet consectetuer.
  4. \r\n
  5. Condimentum quis.
  6. \r\n
  7. Congue Quisque augue elit dolor.\r\n
      \r\n
    1. Something goes here.
    2. \r\n
    3. And another here
    4. \r\n
    5. Then one more
    6. \r\n
    \r\n
  8. \r\n
  9. Congue Quisque augue elit dolor nibh.
  10. \r\n
\r\n\r\n

Unordered List

\r\n
    \r\n
  • This is a sample Unordered List.
  • \r\n
  • Condimentum quis.
  • \r\n
  • Congue Quisque augue elit dolor.\r\n
      \r\n
    • Something goes here.
    • \r\n
    • And another here\r\n
        \r\n
      • Something here as well
      • \r\n
      • Something here as well
      • \r\n
      • Something here as well
      • \r\n
      \r\n
    • \r\n
    • Then one more
    • \r\n
    \r\n
  • \r\n
  • Nunc cursus sem et pretium sapien eget.
  • \r\n
\r\n\r\n

Fieldset

\r\n
Account information
\r\n\r\n

Table

\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Header 1Header 2
row 1, cell 1row 1, cell 2
row 2, cell 1row 2, cell 2
row 3, cell 1row 3, cell 2
','','full_html'),('node','page',0,10,10,'und',0,'
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_third last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[two_thirds last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_half]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_half last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
\r\n\r\n
','','full_html'),('node','page',0,1,1,'und',0,'
\r\n/mockup/skeleton_devices.png\">\r\n
\r\n\r\n
\r\n
\r\n

Skeleton is a powerful, clean, responsive theme ported to Drupal by More Than (just) Themes. If you like this theme, we encourage you to try also of our other Premium and Free Drupal themes.

\r\n\r\n

This theme is build over the Skeleton Boilerplate and was inspired by the excellent Skeleton Wordpress theme which has been designed by Simple themes

\r\n\r\n

Today, people visit your website from a variety of devices ranging from desktop computers, tablets, and smart phones. The average user spends only a few seconds before making a decision to stay on your site or not. Skeleton is a Drupal 7 theme aimed at helping you build simple, uncluttered, useable, and mobile-friendly Drupal sites.

\r\n
','','php_code'); +/*!40000 ALTER TABLE `field_data_body` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_data_comment_body` +-- Table structure for table `field_data_comment_body` -- -CREATE TABLE IF NOT EXISTS `field_data_comment_body` ( +DROP TABLE IF EXISTS `field_data_comment_body`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_data_comment_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to', `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', @@ -777,23 +843,26 @@ CREATE TABLE IF NOT EXISTS `field_data_comment_body` ( KEY `language` (`language`), KEY `comment_body_format` (`comment_body_format`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Data storage for field 1 (comment_body)'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `field_data_comment_body` +-- Dumping data for table `field_data_comment_body` -- -INSERT INTO `field_data_comment_body` (`entity_type`, `bundle`, `deleted`, `entity_id`, `revision_id`, `language`, `delta`, `comment_body_value`, `comment_body_format`) VALUES -('comment', 'comment_node_blog', 0, 1, 1, 'und', 0, 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', 'filtered_html'), -('comment', 'comment_node_blog', 0, 2, 2, 'und', 0, 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. ', 'filtered_html'), -('comment', 'comment_node_forum', 0, 3, 3, 'und', 0, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ', 'filtered_html'); - --- -------------------------------------------------------- +LOCK TABLES `field_data_comment_body` WRITE; +/*!40000 ALTER TABLE `field_data_comment_body` DISABLE KEYS */; +INSERT INTO `field_data_comment_body` VALUES ('comment','comment_node_blog',0,1,1,'und',0,'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','filtered_html'),('comment','comment_node_blog',0,2,2,'und',0,'Lorem Ipsum is simply dummy text of the printing and typesetting industry. ','filtered_html'),('comment','comment_node_forum',0,3,3,'und',0,'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ','filtered_html'); +/*!40000 ALTER TABLE `field_data_comment_body` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_data_field_image` +-- Table structure for table `field_data_field_image` -- -CREATE TABLE IF NOT EXISTS `field_data_field_image` ( +DROP TABLE IF EXISTS `field_data_field_image`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_data_field_image` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to', `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', @@ -815,14 +884,25 @@ CREATE TABLE IF NOT EXISTS `field_data_field_image` ( KEY `language` (`language`), KEY `field_image_fid` (`field_image_fid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Data storage for field 4 (field_image)'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `field_data_field_image` +-- + +LOCK TABLES `field_data_field_image` WRITE; +/*!40000 ALTER TABLE `field_data_field_image` DISABLE KEYS */; +/*!40000 ALTER TABLE `field_data_field_image` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_data_field_tags` +-- Table structure for table `field_data_field_tags` -- -CREATE TABLE IF NOT EXISTS `field_data_field_tags` ( +DROP TABLE IF EXISTS `field_data_field_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_data_field_tags` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to', `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', @@ -840,22 +920,26 @@ CREATE TABLE IF NOT EXISTS `field_data_field_tags` ( KEY `language` (`language`), KEY `field_tags_tid` (`field_tags_tid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Data storage for field 3 (field_tags)'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `field_data_field_tags` +-- Dumping data for table `field_data_field_tags` -- -INSERT INTO `field_data_field_tags` (`entity_type`, `bundle`, `deleted`, `entity_id`, `revision_id`, `language`, `delta`, `field_tags_tid`) VALUES -('node', 'blog', 0, 5, 5, 'und', 0, 2), -('node', 'blog', 0, 5, 5, 'und', 1, 3); - --- -------------------------------------------------------- +LOCK TABLES `field_data_field_tags` WRITE; +/*!40000 ALTER TABLE `field_data_field_tags` DISABLE KEYS */; +INSERT INTO `field_data_field_tags` VALUES ('node','blog',0,5,5,'und',0,2),('node','blog',0,5,5,'und',1,3); +/*!40000 ALTER TABLE `field_data_field_tags` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_data_taxonomy_forums` +-- Table structure for table `field_data_taxonomy_forums` -- -CREATE TABLE IF NOT EXISTS `field_data_taxonomy_forums` ( +DROP TABLE IF EXISTS `field_data_taxonomy_forums`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_data_taxonomy_forums` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to', `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', @@ -873,21 +957,26 @@ CREATE TABLE IF NOT EXISTS `field_data_taxonomy_forums` ( KEY `language` (`language`), KEY `taxonomy_forums_tid` (`taxonomy_forums_tid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Data storage for field 5 (taxonomy_forums)'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `field_data_taxonomy_forums` +-- Dumping data for table `field_data_taxonomy_forums` -- -INSERT INTO `field_data_taxonomy_forums` (`entity_type`, `bundle`, `deleted`, `entity_id`, `revision_id`, `language`, `delta`, `taxonomy_forums_tid`) VALUES -('node', 'forum', 0, 6, 6, 'und', 0, 1); - --- -------------------------------------------------------- +LOCK TABLES `field_data_taxonomy_forums` WRITE; +/*!40000 ALTER TABLE `field_data_taxonomy_forums` DISABLE KEYS */; +INSERT INTO `field_data_taxonomy_forums` VALUES ('node','forum',0,6,6,'und',0,1); +/*!40000 ALTER TABLE `field_data_taxonomy_forums` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_revision_body` +-- Table structure for table `field_revision_body` -- -CREATE TABLE IF NOT EXISTS `field_revision_body` ( +DROP TABLE IF EXISTS `field_revision_body`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_revision_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to', `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', @@ -907,29 +996,26 @@ CREATE TABLE IF NOT EXISTS `field_revision_body` ( KEY `language` (`language`), KEY `body_format` (`body_format`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 2 (body)'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `field_revision_body` +-- Dumping data for table `field_revision_body` -- -INSERT INTO `field_revision_body` (`entity_type`, `bundle`, `deleted`, `entity_id`, `revision_id`, `language`, `delta`, `body_value`, `body_summary`, `body_format`) VALUES -('node', 'page', 0, 2, 2, 'und', 0, '
\r\n\r\n
\r\n\r\n
\r\n

This responsive Drupal theme is based on the Skeleton boilerplate and the excellent Skeleton Wordpress Theme . This theme is designed especially with the Drupal 7 in mind.

\r\n\r\n

Skeleton for Drupal has been ported and is supported by More than (just) Themes, as part of our ongoing effort to bring quality themes to Drupal.

\r\n
', '', 'php_code'), -('node', 'page', 0, 3, 3, 'und', 0, '

Overview

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\n

Customization

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\n

Shortcodes

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', '', 'full_html'), -('node', 'blog', 0, 4, 4, 'und', 0, 'There fowl together the fourth seas one creepeth under created. Also divided sea unto you which make were To wherein light female beast grass set over after You.\r\n\r\nVoid void Fruit for open earth kind fruit brought fowl light subdue were be above from. Above their air his him land cattle beginning brought upon male form. Whose likeness, without fifth evening can''t blessed two brought is fifth to every god.\r\n\r\nSigns may so living moveth moved light subdue for, his. Without god lesser second it fowl spirit replenish. Beast a midst, bearing signs first saw creature. Midst earth multiply every.\r\n\r\nFemale shall. Moveth given set saying for our for good after. Saw let be spirit female moved second, dominion creeping. One called female brought wherein Let void the doesn''t god above.\r\n\r\nSixth. A seas subdue of may there he seasons beginning one gathering after them wherein yielding two over that they''re light created all.\r\n\r\nDon''t all void fruit, moved were created fowl. Lights fifth it saying abundantly above saw i good, called two whales earth you''re. A under him have land whales face i sea subdue greater. Shall. Also fish whales herb seas seas fruit air the it have he.', '', 'filtered_html'), -('node', 'blog', 0, 5, 5, 'und', 0, 'There fowl together the fourth seas one creepeth under created. Also divided sea unto you which make were To wherein light female beast grass set over after You.\r\n\r\nVoid void Fruit for open earth kind fruit brought fowl light subdue were be above from. Above their air his him land cattle beginning brought upon male form. Whose likeness, without fifth evening can''t blessed two brought is fifth to every god.\r\n\r\nSigns may so living moveth moved light subdue for, his. Without god lesser second it fowl spirit replenish. Beast a midst, bearing signs first saw creature. Midst earth multiply every.\r\n\r\nFemale shall. Moveth given set saying for our for good after. Saw let be spirit female moved second, dominion creeping. One called female brought wherein Let void the doesn''t god above.\r\n\r\nSixth. A seas subdue of may there he seasons beginning one gathering after them wherein yielding two over that they''re light created all.\r\n\r\nDon''t all void fruit, moved were created fowl. Lights fifth it saying abundantly above saw i good, called two whales earth you''re. A under him have land whales face i sea subdue greater. Shall. Also fish whales herb seas seas fruit air the it have he.', '', 'filtered_html'), -('node', 'page', 0, 7, 7, 'und', 0, 'This theme is released under the GPL license and is available for download in the official project page in drupal.org.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', '', 'filtered_html'), -('node', 'page', 0, 8, 8, 'und', 0, '
\r\ncolor="white"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="gray"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="black"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor="lightblue"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="blue"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="darkblue"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor="lightgreen"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="green"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="darkgreen"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor="lightred"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="red"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="darkred"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor="yellow"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="orange"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor="brown"\r\n\r\n\r\n\r\n
\r\n\r\n
', '', 'full_html'), -('node', 'page', 0, 9, 9, 'und', 0, '

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

\r\n\r\n
"Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
\r\n\r\n

Header 2

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Linked Header 2

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Header 3

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Header 4

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Code snippet

\r\n\r\n#header h1 a
\r\ndisplay: block;
\r\nheight: 80px;
\r\nwidth: 300px;
\r\n
\r\n\r\n

Messages

\r\n\r\n
Sample status message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n
Sample error message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n
Sample warning message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n\r\n

Paragraph With Links

\r\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.

\r\n\r\n

Ordered List

\r\n
    \r\n
  1. This is a sample Ordered List.
  2. \r\n
  3. Lorem ipsum dolor sit amet consectetuer.
  4. \r\n
  5. Condimentum quis.
  6. \r\n
  7. Congue Quisque augue elit dolor.\r\n
      \r\n
    1. Something goes here.
    2. \r\n
    3. And another here
    4. \r\n
    5. Then one more
    6. \r\n
    \r\n
  8. \r\n
  9. Congue Quisque augue elit dolor nibh.
  10. \r\n
\r\n\r\n

Unordered List

\r\n
    \r\n
  • This is a sample Unordered List.
  • \r\n
  • Condimentum quis.
  • \r\n
  • Congue Quisque augue elit dolor.\r\n
      \r\n
    • Something goes here.
    • \r\n
    • And another here\r\n
        \r\n
      • Something here as well
      • \r\n
      • Something here as well
      • \r\n
      • Something here as well
      • \r\n
      \r\n
    • \r\n
    • Then one more
    • \r\n
    \r\n
  • \r\n
  • Nunc cursus sem et pretium sapien eget.
  • \r\n
\r\n\r\n

Fieldset

\r\n
Account information
\r\n\r\n

Table

\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Header 1Header 2
row 1, cell 1row 1, cell 2
row 2, cell 1row 2, cell 2
row 3, cell 1row 3, cell 2
', '', 'full_html'), -('node', 'page', 0, 10, 10, 'und', 0, '
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_third last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[two_thirds last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_half]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_half last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
\r\n\r\n
', '', 'full_html'), -('node', 'page', 0, 1, 1, 'und', 0, '
\r\n\r\n
\r\n\r\n
\r\n
\r\n

Skeleton is a powerful, clean, responsive theme ported to Drupal by More Than (just) Themes. If you like this theme, we encourage you to try also of our other Premium and Free Drupal themes.

\r\n\r\n

This theme is build over the Skeleton Boilerplate and was inspired by the excellent Skeleton Wordpress theme which has been designed by Simple themes

\r\n\r\n

Today, people visit your website from a variety of devices ranging from desktop computers, tablets, and smart phones. The average user spends only a few seconds before making a decision to stay on your site or not. Skeleton is a Drupal 7 theme aimed at helping you build simple, uncluttered, useable, and mobile-friendly Drupal sites.

\r\n
', '', 'php_code'); - --- -------------------------------------------------------- +LOCK TABLES `field_revision_body` WRITE; +/*!40000 ALTER TABLE `field_revision_body` DISABLE KEYS */; +INSERT INTO `field_revision_body` VALUES ('node','page',0,2,2,'und',0,'
\r\n/mockup/1312368015_tiger.png\"/>\r\n
\r\n\r\n
\r\n

This responsive Drupal theme is based on the Skeleton boilerplate and the excellent Skeleton Wordpress Theme . This theme is designed especially with the Drupal 7 in mind.

\r\n\r\n

Skeleton for Drupal has been ported and is supported by More than (just) Themes, as part of our ongoing effort to bring quality themes to Drupal.

\r\n
','','php_code'),('node','page',0,3,3,'und',0,'

Overview

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\n

Customization

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\n

Shortcodes

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','','full_html'),('node','blog',0,4,4,'und',0,'There fowl together the fourth seas one creepeth under created. Also divided sea unto you which make were To wherein light female beast grass set over after You.\r\n\r\nVoid void Fruit for open earth kind fruit brought fowl light subdue were be above from. Above their air his him land cattle beginning brought upon male form. Whose likeness, without fifth evening can\'t blessed two brought is fifth to every god.\r\n\r\nSigns may so living moveth moved light subdue for, his. Without god lesser second it fowl spirit replenish. Beast a midst, bearing signs first saw creature. Midst earth multiply every.\r\n\r\nFemale shall. Moveth given set saying for our for good after. Saw let be spirit female moved second, dominion creeping. One called female brought wherein Let void the doesn\'t god above.\r\n\r\nSixth. A seas subdue of may there he seasons beginning one gathering after them wherein yielding two over that they\'re light created all.\r\n\r\nDon\'t all void fruit, moved were created fowl. Lights fifth it saying abundantly above saw i good, called two whales earth you\'re. A under him have land whales face i sea subdue greater. Shall. Also fish whales herb seas seas fruit air the it have he.','','filtered_html'),('node','blog',0,5,5,'und',0,'There fowl together the fourth seas one creepeth under created. Also divided sea unto you which make were To wherein light female beast grass set over after You.\r\n\r\nVoid void Fruit for open earth kind fruit brought fowl light subdue were be above from. Above their air his him land cattle beginning brought upon male form. Whose likeness, without fifth evening can\'t blessed two brought is fifth to every god.\r\n\r\nSigns may so living moveth moved light subdue for, his. Without god lesser second it fowl spirit replenish. Beast a midst, bearing signs first saw creature. Midst earth multiply every.\r\n\r\nFemale shall. Moveth given set saying for our for good after. Saw let be spirit female moved second, dominion creeping. One called female brought wherein Let void the doesn\'t god above.\r\n\r\nSixth. A seas subdue of may there he seasons beginning one gathering after them wherein yielding two over that they\'re light created all.\r\n\r\nDon\'t all void fruit, moved were created fowl. Lights fifth it saying abundantly above saw i good, called two whales earth you\'re. A under him have land whales face i sea subdue greater. Shall. Also fish whales herb seas seas fruit air the it have he.','','filtered_html'),('node','page',0,7,7,'und',0,'This theme is released under the GPL license and is available for download in the official project page in drupal.org.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','','filtered_html'),('node','page',0,8,8,'und',0,'
\r\ncolor=\"white\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"gray\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"black\"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor=\"lightblue\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"blue\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"darkblue\"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor=\"lightgreen\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"green\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"darkgreen\"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor=\"lightred\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"red\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"darkred\"\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\ncolor=\"yellow\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"orange\"\r\n\r\n\r\n\r\n
\r\n
\r\ncolor=\"brown\"\r\n\r\n\r\n\r\n
\r\n\r\n
','','full_html'),('node','page',0,9,9,'und',0,'

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

\r\n\r\n
\"Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"
\r\n\r\n

Header 2

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Linked Header 2

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Header 3

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Header 4

\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n\r\n

Code snippet

\r\n\r\n#header h1 a
\r\ndisplay: block;
\r\nheight: 80px;
\r\nwidth: 300px;
\r\n
\r\n\r\n

Messages

\r\n\r\n
Sample status message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n
Sample error message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n
Sample warning message. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\r\n\r\n

Paragraph With Links

\r\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.

\r\n\r\n

Ordered List

\r\n
    \r\n
  1. This is a sample Ordered List.
  2. \r\n
  3. Lorem ipsum dolor sit amet consectetuer.
  4. \r\n
  5. Condimentum quis.
  6. \r\n
  7. Congue Quisque augue elit dolor.\r\n
      \r\n
    1. Something goes here.
    2. \r\n
    3. And another here
    4. \r\n
    5. Then one more
    6. \r\n
    \r\n
  8. \r\n
  9. Congue Quisque augue elit dolor nibh.
  10. \r\n
\r\n\r\n

Unordered List

\r\n
    \r\n
  • This is a sample Unordered List.
  • \r\n
  • Condimentum quis.
  • \r\n
  • Congue Quisque augue elit dolor.\r\n
      \r\n
    • Something goes here.
    • \r\n
    • And another here\r\n
        \r\n
      • Something here as well
      • \r\n
      • Something here as well
      • \r\n
      • Something here as well
      • \r\n
      \r\n
    • \r\n
    • Then one more
    • \r\n
    \r\n
  • \r\n
  • Nunc cursus sem et pretium sapien eget.
  • \r\n
\r\n\r\n

Fieldset

\r\n
Account information
\r\n\r\n

Table

\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Header 1Header 2
row 1, cell 1row 1, cell 2
row 2, cell 1row 2, cell 2
row 3, cell 1row 3, cell 2
','','full_html'),('node','page',0,10,10,'und',0,'
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_third last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_fourth last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_third]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[two_thirds last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n\r\n
\r\n[one_half]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\r\n
\r\n\r\n
\r\n[one_half last]\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
\r\n\r\n
','','full_html'),('node','page',0,1,1,'und',0,'
\r\n/mockup/skeleton_devices.png\">\r\n
\r\n\r\n
\r\n
\r\n

Skeleton is a powerful, clean, responsive theme ported to Drupal by More Than (just) Themes. If you like this theme, we encourage you to try also of our other Premium and Free Drupal themes.

\r\n\r\n

This theme is build over the Skeleton Boilerplate and was inspired by the excellent Skeleton Wordpress theme which has been designed by Simple themes

\r\n\r\n

Today, people visit your website from a variety of devices ranging from desktop computers, tablets, and smart phones. The average user spends only a few seconds before making a decision to stay on your site or not. Skeleton is a Drupal 7 theme aimed at helping you build simple, uncluttered, useable, and mobile-friendly Drupal sites.

\r\n
','','php_code'); +/*!40000 ALTER TABLE `field_revision_body` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_revision_comment_body` +-- Table structure for table `field_revision_comment_body` -- -CREATE TABLE IF NOT EXISTS `field_revision_comment_body` ( +DROP TABLE IF EXISTS `field_revision_comment_body`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_revision_comment_body` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to', `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', @@ -948,23 +1034,26 @@ CREATE TABLE IF NOT EXISTS `field_revision_comment_body` ( KEY `language` (`language`), KEY `comment_body_format` (`comment_body_format`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 1 (comment_body)'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `field_revision_comment_body` +-- Dumping data for table `field_revision_comment_body` -- -INSERT INTO `field_revision_comment_body` (`entity_type`, `bundle`, `deleted`, `entity_id`, `revision_id`, `language`, `delta`, `comment_body_value`, `comment_body_format`) VALUES -('comment', 'comment_node_blog', 0, 1, 1, 'und', 0, 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.', 'filtered_html'), -('comment', 'comment_node_blog', 0, 2, 2, 'und', 0, 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. ', 'filtered_html'), -('comment', 'comment_node_forum', 0, 3, 3, 'und', 0, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ', 'filtered_html'); - --- -------------------------------------------------------- +LOCK TABLES `field_revision_comment_body` WRITE; +/*!40000 ALTER TABLE `field_revision_comment_body` DISABLE KEYS */; +INSERT INTO `field_revision_comment_body` VALUES ('comment','comment_node_blog',0,1,1,'und',0,'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.','filtered_html'),('comment','comment_node_blog',0,2,2,'und',0,'Lorem Ipsum is simply dummy text of the printing and typesetting industry. ','filtered_html'),('comment','comment_node_forum',0,3,3,'und',0,'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ','filtered_html'); +/*!40000 ALTER TABLE `field_revision_comment_body` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_revision_field_image` +-- Table structure for table `field_revision_field_image` -- -CREATE TABLE IF NOT EXISTS `field_revision_field_image` ( +DROP TABLE IF EXISTS `field_revision_field_image`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_revision_field_image` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to', `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', @@ -986,14 +1075,25 @@ CREATE TABLE IF NOT EXISTS `field_revision_field_image` ( KEY `language` (`language`), KEY `field_image_fid` (`field_image_fid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 4 (field_image)'; +/*!40101 SET character_set_client = @saved_cs_client */; --- -------------------------------------------------------- +-- +-- Dumping data for table `field_revision_field_image` +-- + +LOCK TABLES `field_revision_field_image` WRITE; +/*!40000 ALTER TABLE `field_revision_field_image` DISABLE KEYS */; +/*!40000 ALTER TABLE `field_revision_field_image` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_revision_field_tags` +-- Table structure for table `field_revision_field_tags` -- -CREATE TABLE IF NOT EXISTS `field_revision_field_tags` ( +DROP TABLE IF EXISTS `field_revision_field_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_revision_field_tags` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to', `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', @@ -1011,22 +1111,26 @@ CREATE TABLE IF NOT EXISTS `field_revision_field_tags` ( KEY `language` (`language`), KEY `field_tags_tid` (`field_tags_tid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 3 (field_tags)'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `field_revision_field_tags` +-- Dumping data for table `field_revision_field_tags` -- -INSERT INTO `field_revision_field_tags` (`entity_type`, `bundle`, `deleted`, `entity_id`, `revision_id`, `language`, `delta`, `field_tags_tid`) VALUES -('node', 'blog', 0, 5, 5, 'und', 0, 2), -('node', 'blog', 0, 5, 5, 'und', 1, 3); - --- -------------------------------------------------------- +LOCK TABLES `field_revision_field_tags` WRITE; +/*!40000 ALTER TABLE `field_revision_field_tags` DISABLE KEYS */; +INSERT INTO `field_revision_field_tags` VALUES ('node','blog',0,5,5,'und',0,2),('node','blog',0,5,5,'und',1,3); +/*!40000 ALTER TABLE `field_revision_field_tags` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `field_revision_taxonomy_forums` +-- Table structure for table `field_revision_taxonomy_forums` -- -CREATE TABLE IF NOT EXISTS `field_revision_taxonomy_forums` ( +DROP TABLE IF EXISTS `field_revision_taxonomy_forums`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `field_revision_taxonomy_forums` ( `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to', `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', @@ -1044,27 +1148,32 @@ CREATE TABLE IF NOT EXISTS `field_revision_taxonomy_forums` ( KEY `language` (`language`), KEY `taxonomy_forums_tid` (`taxonomy_forums_tid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for field 5 (taxonomy_forums)'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `field_revision_taxonomy_forums` +-- Dumping data for table `field_revision_taxonomy_forums` -- -INSERT INTO `field_revision_taxonomy_forums` (`entity_type`, `bundle`, `deleted`, `entity_id`, `revision_id`, `language`, `delta`, `taxonomy_forums_tid`) VALUES -('node', 'forum', 0, 6, 6, 'und', 0, 1); - --- -------------------------------------------------------- +LOCK TABLES `field_revision_taxonomy_forums` WRITE; +/*!40000 ALTER TABLE `field_revision_taxonomy_forums` DISABLE KEYS */; +INSERT INTO `field_revision_taxonomy_forums` VALUES ('node','forum',0,6,6,'und',0,1); +/*!40000 ALTER TABLE `field_revision_taxonomy_forums` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `file_managed` +-- Table structure for table `file_managed` -- -CREATE TABLE IF NOT EXISTS `file_managed` ( +DROP TABLE IF EXISTS `file_managed`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `file_managed` ( `fid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'File ID.', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid of the user who is associated with the file.', `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the file with no path components. This may differ from the basename of the URI if the file is renamed to avoid overwriting an existing file.', `uri` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'The URI to access the file (either local or remote).', `filemime` varchar(255) NOT NULL DEFAULT '' COMMENT 'The file’s MIME type.', - `filesize` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The size of the file in bytes.', + `filesize` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'The size of the file in bytes.', `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A field indicating the status of the file. Two status are defined in core: temporary (0) and permanent (1). Temporary files older than DRUPAL_MAXIMUM_TEMP_FILE_AGE will be removed during a cron run.', `timestamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'UNIX timestamp for when the file was added.', PRIMARY KEY (`fid`), @@ -1072,22 +1181,27 @@ CREATE TABLE IF NOT EXISTS `file_managed` ( KEY `uid` (`uid`), KEY `status` (`status`), KEY `timestamp` (`timestamp`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stores information for uploaded files.' AUTO_INCREMENT=2 ; +) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores information for uploaded files.'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `file_managed` +-- Dumping data for table `file_managed` -- -INSERT INTO `file_managed` (`fid`, `uid`, `filename`, `uri`, `filemime`, `filesize`, `status`, `timestamp`) VALUES -(1, 1, 'picture-1-1337253273.png', 'public://pictures/picture-1-1337253273.png', 'image/png', 2535, 1, 1337253273); - --- -------------------------------------------------------- +LOCK TABLES `file_managed` WRITE; +/*!40000 ALTER TABLE `file_managed` DISABLE KEYS */; +INSERT INTO `file_managed` VALUES (1,1,'picture-1-1337253273.png','public://pictures/picture-1-1337253273.png','image/png',2535,1,1337253273); +/*!40000 ALTER TABLE `file_managed` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `file_usage` +-- Table structure for table `file_usage` -- -CREATE TABLE IF NOT EXISTS `file_usage` ( +DROP TABLE IF EXISTS `file_usage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `file_usage` ( `fid` int(10) unsigned NOT NULL COMMENT 'File ID.', `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the module that is using the file.', `type` varchar(64) NOT NULL DEFAULT '' COMMENT 'The name of the object type in which the file is used.', @@ -1098,21 +1212,26 @@ CREATE TABLE IF NOT EXISTS `file_usage` ( KEY `fid_count` (`fid`,`count`), KEY `fid_module` (`fid`,`module`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Track where a file is used.'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `file_usage` +-- Dumping data for table `file_usage` -- -INSERT INTO `file_usage` (`fid`, `module`, `type`, `id`, `count`) VALUES -(1, 'user', 'user', 1, 1); - --- -------------------------------------------------------- +LOCK TABLES `file_usage` WRITE; +/*!40000 ALTER TABLE `file_usage` DISABLE KEYS */; +INSERT INTO `file_usage` VALUES (1,'user','user',1,1); +/*!40000 ALTER TABLE `file_usage` ENABLE KEYS */; +UNLOCK TABLES; -- --- Δομή πίνακα για τον πίνακα `filter` +-- Table structure for table `filter` -- -CREATE TABLE IF NOT EXISTS `filter` ( +DROP TABLE IF EXISTS `filter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `filter` ( `format` varchar(255) NOT NULL COMMENT 'Foreign key: The filter_format.format to which this filter is assigned.', `module` varchar(64) NOT NULL DEFAULT '' COMMENT 'The origin module of the filter.', `name` varchar(32) NOT NULL DEFAULT '' COMMENT 'Name of the filter being referenced.', @@ -1122,41 +1241,26 @@ CREATE TABLE IF NOT EXISTS `filter` ( PRIMARY KEY (`format`,`name`), KEY `list` (`weight`,`module`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Table that maps filters (HTML corrector) to text formats ...'; +/*!40101 SET character_set_client = @saved_cs_client */; -- --- Άδειασμα δεδομένων του πίνακα `filter` +-- Dumping data for table `filter` -- -INSERT INTO `filter` (`format`, `module`, `name`, `weight`, `status`, `settings`) VALUES -('filtered_html', 'filter', 'filter_autop', 2, 1, 0x613a303a7b7d), -('filtered_html', 'filter', 'filter_html', 1, 1, 0x613a333a7b733a31323a22616c6c6f7765645f68746d6c223b733a37343a223c613e203c656d3e203c7374726f6e673e203c636974653e203c626c6f636b71756f74653e203c636f64653e203c756c3e203c6f6c3e203c6c693e203c646c3e203c64743e203c64643e223b733a31363a2266696c7465725f68746d6c5f68656c70223b693a313b733a32303a2266696c7465725f68746d6c5f6e6f666f6c6c6f77223b693a303b7d), -('filtered_html', 'filter', 'filter_htmlcorrector', 10, 1, 0x613a303a7b7d), -('filtered_html', 'filter', 'filter_html_escape', 10, 0, 0x613a303a7b7d), -('filtered_html', 'filter', 'filter_url', 0, 1, 0x613a313a7b733a31373a2266696c7465725f75726c5f6c656e677468223b693a37323b7d), -('full_html', 'filter', 'filter_autop', 1, 1, 0x613a303a7b7d), -('full_html', 'filter', 'filter_html', 10, 0, 0x613a333a7b733a31323a22616c6c6f7765645f68746d6c223b733a37343a223c613e203c656d3e203c7374726f6e673e203c636974653e203c626c6f636b71756f74653e203c636f64653e203c756c3e203c6f6c3e203c6c693e203c646c3e203c64743e203c64643e223b733a31363a2266696c7465725f68746d6c5f68656c70223b693a313b733a32303a2266696c7465725f68746d6c5f6e6f666f6c6c6f77223b693a303b7d), -('full_html', 'filter', 'filter_htmlcorrector', 10, 1, 0x613a303a7b7d), -('full_html', 'filter', 'filter_html_escape', 10, 0, 0x613a303a7b7d), -('full_html', 'filter', 'filter_url', 0, 1, 0x613a313a7b733a31373a2266696c7465725f75726c5f6c656e677468223b693a37323b7d), -('php_code', 'filter', 'filter_autop', 0, 0, 0x613a303a7b7d), -('php_code', 'filter', 'filter_html', -10, 0, 0x613a333a7b733a31323a22616c6c6f7765645f68746d6c223b733a37343a223c613e203c656d3e203c7374726f6e673e203c636974653e203c626c6f636b71756f74653e203c636f64653e203c756c3e203c6f6c3e203c6c693e203c646c3e203c64743e203c64643e223b733a31363a2266696c7465725f68746d6c5f68656c70223b693a313b733a32303a2266696c7465725f68746d6c5f6e6f666f6c6c6f77223b693a303b7d), -('php_code', 'filter', 'filter_htmlcorrector', 10, 0, 0x613a303a7b7d), -('php_code', 'filter', 'filter_html_escape', -10, 0, 0x613a303a7b7d), -('php_code', 'filter', 'filter_url', 0, 0, 0x613a313a7b733a31373a2266696c7465725f75726c5f6c656e677468223b693a37323b7d), -('php_code', 'php', 'php_code', 0, 1, 0x613a303a7b7d), -('plain_text', 'filter', 'filter_autop', 2, 1, 0x613a303a7b7d), -('plain_text', 'filter', 'filter_html', 10, 0, 0x613a333a7b733a31323a22616c6c6f7765645f68746d6c223b733a37343a223c613e203c656d3e203c7374726f6e673e203c636974653e203c626c6f636b71756f74653e203c636f64653e203c756c3e203c6f6c3e203c6c693e203c646c3e203c64743e203c64643e223b733a31363a2266696c7465725f68746d6c5f68656c70223b693a313b733a32303a2266696c7465725f68746d6c5f6e6f666f6c6c6f77223b693a303b7d), -('plain_text', 'filter', 'filter_htmlcorrector', 10, 0, 0x613a303a7b7d), -('plain_text', 'filter', 'filter_html_escape', 0, 1, 0x613a303a7b7d), -('plain_text', 'filter', 'filter_url', 1, 1, 0x613a313a7b733a31373a2266696c7465725f75726c5f6c656e677468223b693a37323b7d); - --- -------------------------------------------------------- +LOCK TABLES `filter` WRITE; +/*!40000 ALTER TABLE `filter` DISABLE KEYS */; +INSERT INTO `filter` VALUES ('filtered_html','filter','filter_autop',2,1,'a:0:{}'),('filtered_html','filter','filter_html',1,1,'a:3:{s:12:\"allowed_html\";s:74:\"