-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make PolyLine Hash unique * Make PolyLine Hash unique
- Loading branch information
1 parent
8610064
commit 0c29c0e
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
database/migrations/2021_02_01_000000_add_unique_key_to_poly_lines.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
use Illuminate\Database\Migrations\Migration; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
class AddUniqueKeyToPolyLines extends Migration | ||
{ | ||
public function up(): void { | ||
Schema::table('poly_lines', function(Blueprint $table) { | ||
$table->unique(['hash']); | ||
}); | ||
} | ||
|
||
|
||
public function down(): void { | ||
Schema::table('poly_lines', function(Blueprint $table) { | ||
$table->dropUnique(['hash']); | ||
}); | ||
} | ||
} |