summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-10-21 08:07:49 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-10-21 08:07:49 -0700
commit312811c783a14d33556acfb4ecdbd335c2605df0 (patch)
treeed681d5da301282d272811d2a6eb82462c2e9df7
parente025abea4179bc059b8fef195bafe0c3f60f1220 (diff)
Change the default install.sql such that the owner id of root album is the defined admin (id = 2)
-rwxr-xr-xinstaller/install.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/install.sql b/installer/install.sql
index da349c36..9ec6ff48 100755
--- a/installer/install.sql
+++ b/installer/install.sql
@@ -175,7 +175,7 @@ CREATE TABLE {items} (
KEY `weight` (`weight`)
) AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
-INSERT INTO {items} VALUES (1,NULL,NULL,UNIX_TIMESTAMP(),'',NULL,1,1,NULL,NULL,NULL,0,NULL,'','',1,NULL,NULL,2,NULL,'weight','ASC',1,NULL,NULL,'Gallery','album',UNIX_TIMESTAMP(),0,1,NULL,'1','1');
+INSERT INTO {items} VALUES (1,NULL,NULL,UNIX_TIMESTAMP(),'',NULL,1,1,NULL,NULL,2,0,NULL,'','',1,NULL,NULL,2,NULL,'weight','ASC',1,NULL,NULL,'Gallery','album',UNIX_TIMESTAMP(),0,1,NULL,'1','1');
DROP TABLE IF EXISTS {items_tags};
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;