| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 13 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 13 | */  | 
            ||
| 14 | public function up()  | 
            ||
| 15 |     { | 
            ||
| 16 |         Schema::create('users', function (Blueprint $table) { | 
            ||
| 17 |             $table->increments('id'); | 
            ||
| 18 |             $table->string('name'); | 
            ||
| 19 |             $table->string('email')->unique(); | 
            ||
| 20 |             $table->string('password', 60); | 
            ||
| 21 | |||
| 22 | $table->rememberToken();  | 
            ||
| 23 | $table->timestamps();  | 
            ||
| 24 | $table->engine = 'InnoDB';  | 
            ||
| 25 | });  | 
            ||
| 26 | }  | 
            ||
| 40 |