Ignore:
Timestamp:
2013/03/10 10:55:46 (11 years ago)
Author:
adachi
Message:

#2181 メソッド名修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_13-plugin/data/class/plugin/SC_Plugin_Installer.php

    r22699 r22710  
    171171     * @param type $type  
    172172     */ 
    173     function sqlAterTableAdd($table_name, $col_name, $col_type) { 
     173    function sqlAterTableAddColumn($table_name, $col_name, $col_type) { 
    174174        $sql = "ALTER TABLE $table_name ADD $col_name $col_type "; 
    175175        $this->sql($sql); 
     
    183183     * @param type $type  
    184184     */ 
    185     function sqlAterTableDrop($table_name, $col_name) { 
     185    function sqlAterTableDropColumn($table_name, $col_name) { 
    186186        $sql = "ALTER TABLE $table_name DROP $col_name"; 
    187187        $this->sql($sql); 
Note: See TracChangeset for help on using the changeset viewer.