Changeset 16863


Ignore:
Timestamp:
2007/12/02 21:20:56 (16 years ago)
Author:
adachi
Message:

dtb_moduleにカラム追加

Location:
branches/feature-module-update
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/upgrade/LC_Page_Upgrade_Download.php

    r16862 r16863  
    247247        if ($count) { 
    248248            $arrUpdate = array( 
    249                 'module_name' => $objRet->product_code, 
     249                'module_code' => $objRet->product_code, 
     250                'module_name' => $objRet->product_name, 
    250251                'update_date' => 'NOW()' 
    251252            ); 
     
    253254        } else { 
    254255            $arrInsert = array( 
    255                 'module_id' => $objRet->product_id, 
    256                 'module_name' => $objRet->product_code, 
    257                 //'sub_data' => $objRet->sub_data, 
     256                'module_id'   => $objRet->product_id, 
     257                'module_code' => $objRet->product_code, 
     258                'module_name' => $objRet->product_name, 
    258259                'auto_update_flg' => '0', 
    259260                'create_date'     => 'NOW()', 
  • branches/feature-module-update/html/install/sql/add/dtb_module_mysql.sql

    r16673 r16863  
    11CREATE TABLE dtb_module ( 
    22    module_id int NOT NULL UNIQUE, 
     3    module_code text NOT NULL, 
    34    module_name text NOT NULL, 
    45    sub_data text, 
  • branches/feature-module-update/html/install/sql/add/dtb_module_pgsql.sql

    r16673 r16863  
    11CREATE TABLE dtb_module ( 
    22    module_id int NOT NULL UNIQUE, 
     3    module_code text NOT NULL, 
    34    module_name text NOT NULL, 
    45    sub_data text, 
Note: See TracChangeset for help on using the changeset viewer.