Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function up() |
||
28 | { |
||
29 | Schema::create($this->table, function (Blueprint $table) { |
||
30 | $table->increments('id'); |
||
31 | $table->string('name')->nullable(); |
||
32 | $table->string('email'); |
||
33 | $table->dateTime('subscribed_at')->nullable(); |
||
34 | $table->dateTime('verified_at')->nullable(); |
||
35 | $table->softDeletes(); |
||
36 | |||
37 | $table->unique(['email', 'deleted_at']); |
||
38 | }); |
||
39 | } |
||
40 | |||
51 |