Blame view

console/migrations/m180202_053527_create_customer_table.php 1.83 KB
2c12aaba   Timur Kastemirov   comments
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  <?php
  
  use yii\db\Migration;
  
  /**
   * Handles the creation of table `customer`.
   */
  class m180202_053527_create_customer_table extends Migration
  {
      /**
       * @inheritdoc
       */
      public function safeUp()
      {
          $this->createTable(
              'customer',
              [
                  'id'                   => $this->primaryKey(),
                  'username'             => $this->string()
                                                 ->notNull()
                                                 ->unique(),
                  'auth_key'             => $this->string(32)
                                                 ->notNull(),
                  'password_hash'        => $this->string()
                                                 ->notNull(),
                  'password_reset_token' => $this->string()
                                                 ->unique(),
                  'email'                => $this->string()
                                                 ->unique(),
                  
                  'status'     => $this->smallInteger()
                                       ->notNull()
                                       ->defaultValue(10),
                  'created_at' => $this->integer()
                                       ->notNull(),
                  'updated_at' => $this->integer()
                                       ->notNull(),
                  'name'       => $this->string(),
                  'phone'      => $this->string(),
                  'gender'     => $this->smallInteger(1),
                  'birthday'   => $this->integer(),
                  'city'       => $this->string(),
                  'address'    => $this->string(),
                  'social_id'  => $this->string(),
              ]
          );
      }
      
      /**
       * @inheritdoc
       */
      public function safeDown()
      {
          $this->dropTable('customer');
      }
  }