Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
30 | public function up() |
||
31 | { |
||
32 | Schema::create($this->table, function(Blueprint $table) |
||
33 | { |
||
34 | $table->increments('id'); |
||
35 | $table->string('email')->unique(); |
||
36 | $table->string('password', 60); |
||
37 | $table->string('reset_token', 10)->nullable(); |
||
38 | $table->rememberToken(); |
||
39 | $table->timestamps(); |
||
40 | }); |
||
41 | } |
||
42 | |||
54 |