Blame view

console/migrations/m151109_085627_update_news_img.php 597 Bytes
a0c30ef8   Administrator   upload project
1
2
3
4
5
6
7
  <?php
  
  use yii\db\Schema;
  use yii\db\Migration;
  
  class m151109_085627_update_news_img extends Migration
  {
d4fe447d   Administrator   upload project
8
      public function safeUp()
a0c30ef8   Administrator   upload project
9
10
11
      {
          $view = <<< MySQL
          update
d4fe447d   Administrator   upload project
12
13
              w_news
          set img = CONCAT('/storage/news/',img);
a0c30ef8   Administrator   upload project
14
15
16
17
18
19
20
21
22
  MySQL;
          $this->execute($view);
  
      }
  
      public function down()
      {
          echo "m151109_085627_update_news_img cannot be reverted.\n";
  
d4fe447d   Administrator   upload project
23
          return true;
a0c30ef8   Administrator   upload project
24
25
26
27
28
29
30
31
32
33
34
35
36
      }
  
      /*
      // Use safeUp/safeDown to run migration code within a transaction
      public function safeUp()
      {
      }
  
      public function safeDown()
      {
      }
      */
  }