diff options
Diffstat (limited to 'database/database.mysql')
-rw-r--r-- | database/database.mysql | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/database/database.mysql b/database/database.mysql index ef5076355..115a73674 100644 --- a/database/database.mysql +++ b/database/database.mysql @@ -302,10 +302,10 @@ CREATE TABLE page ( ) TYPE=MyISAM; -- --- Table structure for table 'path' +-- Table structure for table 'url_alias' -- -CREATE TABLE path ( +CREATE TABLE url_alias ( pid int(10) unsigned NOT NULL auto_increment, src varchar(128) NOT NULL default '', dst varchar(128) NOT NULL default '', @@ -421,10 +421,10 @@ CREATE TABLE site ( ) TYPE=MyISAM; -- --- Table structure for table 'statistics' +-- Table structure for table 'node_counter' -- -CREATE TABLE statistics ( +CREATE TABLE node_counter ( nid int(11) NOT NULL default '0', totalcount bigint(20) unsigned NOT NULL default '0', daycount mediumint(8) unsigned NOT NULL default '0', @@ -590,7 +590,7 @@ INSERT INTO system VALUES ('modules/taxonomy.module','taxonomy','module','',1); INSERT INTO system VALUES ('themes/marvin/marvin.theme','marvin','theme','Internet explorer, Netscape, Opera',1); INSERT INTO users (uid, name, mail, rid) VALUES ('0', 'Anonymous', 'root@localhost', '1'); -REPLACE variable SET name='update_start', value='s:10:"2003-09-29;"'; +REPLACE variable SET name='update_start', value='s:10:"2003-10-22;"'; REPLACE variable SET name='theme_default', value='s:6:"marvin";'; REPLACE blocks SET module = 'user', delta = '0', status = '1'; |