Blame view

console/migrations/m170309_000000_user.php 1.91 KB
c237629a   Anastasia   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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  <?php
      
      use yii\db\Migration;
      
      class m170309_000000_user extends Migration
      {
          public function safeUp()
          {
              $tableOptions = null;
              if ($this->db->driverName === 'mysql') {
                  // http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci
                  $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';
              }
              
              $this->createTable(
                  'user',
                  [
                      '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()
                                                     ->notNull()
                                                     ->unique(),
                      
                      'status'     => $this->smallInteger()
                                           ->notNull()
                                           ->defaultValue(10),
                      'created_at' => $this->integer()
                                           ->notNull(),
                      'updated_at' => $this->integer()
                                           ->notNull(),
                  ],
                  $tableOptions
              );
          }
          
          public function safeDown()
          {
              $this->dropTable('user');
          }
      }