Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('companies', function (Blueprint $table) { |
||
16 | $table->increments('id'); |
||
17 | $table->string('name')->unique(); |
||
18 | $table->string('email')->unique(); |
||
19 | $table->string('password', 60); |
||
20 | $table->boolean('verified'); |
||
21 | $table->rememberToken(); |
||
22 | $table->timestamps(); |
||
23 | }); |
||
24 | } |
||
25 | |||
36 |