Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function up() |
||
16 | { |
||
17 | Schema::create("users", function(Blueprint $table) { |
||
18 | $table->increments(); |
||
19 | $table->text("username"); |
||
20 | $table->string("email")->unique(); |
||
21 | $table->string("password"); |
||
22 | $table->string('remember_token', 100); |
||
23 | $table->string('reset_password_token', 100); |
||
24 | $table->timestamps(); |
||
25 | }, "mysql"); |
||
26 | } |
||
38 |