Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('users', function (Blueprint $table) { |
||
17 | $table->uuid('id'); |
||
18 | $table->primary('id'); |
||
19 | $table->string('email')->index(); |
||
20 | $table->string('keyword')->nullable(); |
||
21 | $table->string('location')->nullable(); |
||
22 | $table->dateTime('confirmed_at')->nullable(); |
||
23 | $table->softDeletes(); |
||
24 | $table->timestamps(); |
||
25 | }); |
||
26 | } |
||
27 | |||
38 |