up() public method

Child classes may override this method to provide actual migration logic.
public up ( ) : boolean
return boolean return a false value to indicate the migration fails and should not proceed further. All other return values mean the migration succeeds.
コード例 #1
0
 public function up()
 {
     $this->execute('ALTER TABLE {{map}} ADD COLUMN [[area]] INTEGER');
     parent::up();
 }