Blame view

console/migrations/m160518_185644_change_order.php 547 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  <?php
  
  use yii\db\Migration;
  
  class m160518_185644_change_order extends Migration
  {
      public function up()
      {
          $this->dropColumn('orders', 'surname');
          $this->dropColumn('orders', 'patronymic');
      }
  
      public function down()
      {
          $this->addColumn('orders', 'surname','string');
          $this->addColumn('orders', 'patronymic','string');
      }
  
      /*
      // Use safeUp/safeDown to run migration code within a transaction
      public function safeUp()
      {
      }
  
      public function safeDown()
      {
      }
      */
  }