Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('recruiters', function (Blueprint $table) { |
||
17 | $table->uuid('id')->primary(); |
||
18 | $table->string('name')->unique(); |
||
19 | $table->string('url')->nullable(); |
||
20 | $table->timestamps(); |
||
21 | }); |
||
22 | |||
23 | Schema::table('searches', function (Blueprint $table) { |
||
24 | $table->boolean('no_recruiters')->default(false); |
||
25 | }); |
||
26 | } |
||
27 | |||
42 |