Blame view

console/migrations/m160331_132149_slider.php 567 Bytes
ba008812   Administrator   31.03.16 finish 1
1
2
3
4
5
6
7
8
9
10
  <?php
  
  use yii\db\Migration;
  
  class m160331_132149_slider extends Migration
  {
      public function up()
      {
          $this->createTable('{{%slider}}', [
              'slider_id' => $this->primaryKey(),
ba008812   Administrator   31.03.16 finish 1
11
12
13
14
              'speed' => $this->integer(4),
              'duration' => $this->integer(4),
              'title' => $this->string(200),
              'status' => $this->smallInteger(1),
8774e5a3   Administrator   31.03.16 finish 1
15
16
              'width' => $this->integer(4),
              'height' => $this->integer(4),
ba008812   Administrator   31.03.16 finish 1
17
          ]);
ba008812   Administrator   31.03.16 finish 1
18
19
20
21
      }
  
      public function down()
      {
ba008812   Administrator   31.03.16 finish 1
22
23
24
25
26
          $this->dropTable('{{%slider}}');
      }
  
  
  }