OSDN Git Service

preparation for 4.0 trunk: move whole scripts just under trunk directory
[nucleus-jp/nucleus-jp-ancient.git] / utf8 / nucleus / upgrades / upgrade3.2.php
diff --git a/utf8/nucleus/upgrades/upgrade3.2.php b/utf8/nucleus/upgrades/upgrade3.2.php
deleted file mode 100755 (executable)
index 34d9d65..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-<?php
-/*
- * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
- * Copyright (C) 2002-2011 The Nucleus Group
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- * (see nucleus/documentation/index.html#license for more info)
- */
-/**
- * @license http://nucleuscms.org/license.txt GNU General Public License
- * @copyright Copyright (C) 2002-2011 The Nucleus Group
- * @version $Id$
- * $NucleusJP: upgrade3.2.php,v 1.5.2.1 2007/10/24 05:39:16 kimitake Exp $
- *
- */
-
-function upgrade_do320() {
-
-    if (upgrade_checkinstall(320))
-        return 'インストール済みです';
-
-    // create nucleus_activation table
-    if (!upgrade_checkIfTableExists('tickets')) {
-        $query = 'CREATE TABLE ' . sql_table('activation') . ' ('
-               . ' vkey varchar(40) NOT NULL default \'\','
-               . ' vtime datetime NOT NULL default \'0000-00-00 00:00:00\','
-               . ' vmember int(11) NOT NULL default \'0\','
-               . ' vtype varchar(15) NOT NULL default \'\','
-               . ' vextra varchar(128) NOT NULL default \'\','
-               . ' PRIMARY KEY  (vkey) '
-               . ' )';
-        upgrade_query('Creating account activation table', $query);    
-    }
-    
-    // create CookiePrefix setting
-    if (!upgrade_checkIfCVExists('CookiePrefix')) {
-        $query = 'INSERT INTO '.sql_table('config')." VALUES ('CookiePrefix','')";
-        upgrade_query('Creating CookiePrefix config value',$query); 
-    }
-
-    // create nucleus_tickets table
-    if (!upgrade_checkIfTableExists('tickets')) {
-        $query = 'CREATE TABLE ' . sql_table('tickets') . ' ('
-               . ' ticket varchar(40) NOT NULL default \'\','
-               . ' ctime datetime NOT NULL default \'0000-00-00 00:00:00\','
-               . ' member int(11) NOT NULL default \'0\', '
-               . ' PRIMARY KEY  (ticket, member) '
-               . ' )';
-        upgrade_query('Creating ticket table', $query);    
-    }
-    
-    // 3.1 -> 3.2
-    // update database version  
-    update_version('320');
-    
-    // nothing!
-}
-
-?>