Blame view

console/migrations/m180507_115504_create_gallery_table.php 561 Bytes
6fc26f8f   Anastasia   - slider
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
30
  <?php
  
  use yii\db\Migration;
  
  /**
   * Handles the creation of table `gallery`.
   */
  class m180507_115504_create_gallery_table extends Migration
  {
      /**
       * {@inheritdoc}
       */
      public function safeUp()
      {
          $this->createTable('gallery', [
              'id' => $this->primaryKey(),
              'image_id' => $this->integer(),
              'sort' => $this->integer(),
              'status' => $this->boolean(),
          ]);
      }
  
      /**
       * {@inheritdoc}
       */
      public function safeDown()
      {
          $this->dropTable('gallery');
      }
  }