diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-03-09 03:29:22 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-03-09 03:29:22 +0000 |
commit | 1ad7ca639ddb87af3755a4ac17ae5199fa5c4fc2 (patch) | |
tree | a44e94ad9bddd9bbe99c002550916d94ab7373f7 /installer | |
parent | 445f18fb51a55102a95b6a1ffd388ee06ecd5041 (diff) |
Make the description a text column so that we can handle much larger
descriptions.
Diffstat (limited to 'installer')
-rw-r--r-- | installer/init_var.php | 4 | ||||
-rw-r--r-- | installer/install.sql | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/installer/init_var.php b/installer/init_var.php index b0f0d5db..b1ecf995 100644 --- a/installer/init_var.php +++ b/installer/init_var.php @@ -1,8 +1,8 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <?php !file_exists(VARPATH . "albums") && mkdir(VARPATH . "albums"); +!file_exists(VARPATH . "logs") && mkdir(VARPATH . "logs"); !file_exists(VARPATH . "uploads") && mkdir(VARPATH . "uploads"); -!file_exists(VARPATH . "modules") && mkdir(VARPATH . "modules"); !file_exists(VARPATH . "resizes") && mkdir(VARPATH . "resizes"); -!file_exists(VARPATH . "logs") && mkdir(VARPATH . "logs"); !file_exists(VARPATH . "thumbs") && mkdir(VARPATH . "thumbs"); +!file_exists(VARPATH . "modules") && mkdir(VARPATH . "modules"); diff --git a/installer/install.sql b/installer/install.sql index 4afa2399..e0a4904e 100644 --- a/installer/install.sql +++ b/installer/install.sql @@ -115,7 +115,7 @@ SET character_set_client = utf8; CREATE TABLE {items} ( `album_cover_item_id` int(9) default NULL, `created` int(9) default NULL, - `description` varchar(255) default NULL, + `description` text, `height` int(9) default NULL, `id` int(9) NOT NULL auto_increment, `left` int(9) NOT NULL, @@ -146,7 +146,7 @@ CREATE TABLE {items} ( KEY `random` (`rand_key`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -INSERT INTO {items} VALUES (NULL,1236547219,'',NULL,1,1,1,NULL,NULL,NULL,0,NULL,NULL,1,2,NULL,NULL,1,'Gallery','album',1236547219,0,NULL,NULL,NULL,1,1); +INSERT INTO {items} VALUES (NULL,1236569100,'',NULL,1,1,1,NULL,NULL,NULL,0,NULL,NULL,1,2,NULL,NULL,1,'Gallery','album',1236569100,0,NULL,NULL,NULL,1,1); DROP TABLE IF EXISTS {items_tags}; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; @@ -311,7 +311,7 @@ CREATE TABLE {users} ( UNIQUE KEY `hash` (`hash`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -INSERT INTO {users} VALUES (1,'guest','Guest User','ep^Of48514725fd40c706ceb2565ccceacb3',0,0,NULL,0,1,NULL,NULL,NULL),(2,'admin','Gallery Administrator','',0,0,NULL,1,0,NULL,NULL,NULL); +INSERT INTO {users} VALUES (1,'guest','Guest User','F[]bd25d1cd14a1925529059b832d6a0cb0a',0,0,NULL,0,1,NULL,NULL,NULL),(2,'admin','Gallery Administrator','',0,0,NULL,1,0,NULL,NULL,NULL); DROP TABLE IF EXISTS {vars}; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; @@ -324,4 +324,4 @@ CREATE TABLE {vars} ( UNIQUE KEY `module_name` (`module_name`,`name`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -INSERT INTO {vars} VALUES (1,'core','active_site_theme','default'),(2,'core','active_admin_theme','admin_default'),(3,'core','page_size','9'),(4,'core','thumb_size','200'),(5,'core','resize_size','640'),(6,'core','default_locale','en_US'),(7,'core','graphics_toolkit','imagemagick'),(8,'core','graphics_toolkit_path','/usr/bin'),(9,'core','blocks_dashboard_sidebar','a:1:{i:1792454813;a:2:{i:0;s:4:\"core\";i:1;s:12:\"project_news\";}}'),(10,'core','blocks_dashboard_center','a:1:{i:295582972;a:2:{i:0;s:7:\"comment\";i:1;s:15:\"recent_comments\";}}'),(11,'core','version','3.0'),(12,'comment','spam_caught','0'); +INSERT INTO {vars} VALUES (1,'core','active_site_theme','default'),(2,'core','active_admin_theme','admin_default'),(3,'core','page_size','9'),(4,'core','thumb_size','200'),(5,'core','resize_size','640'),(6,'core','default_locale','en_US'),(7,'core','graphics_toolkit','imagemagick'),(8,'core','graphics_toolkit_path','/usr/bin'),(9,'core','blocks_dashboard_sidebar','a:1:{i:671640821;a:2:{i:0;s:4:\"core\";i:1;s:12:\"project_news\";}}'),(10,'core','blocks_dashboard_center','a:1:{i:400718391;a:2:{i:0;s:7:\"comment\";i:1;s:15:\"recent_comments\";}}'),(11,'core','version','3.0'),(12,'comment','spam_caught','0'); |