Skip to content

Commit

Permalink
🗃 Make PolyLine Hash unique (#203)
Browse files Browse the repository at this point in the history
* Make PolyLine Hash unique

* Make PolyLine Hash unique
  • Loading branch information
MrKrisKrisu authored Feb 9, 2021
1 parent 8610064 commit 0c29c0e
Showing 1 changed file with 21 additions and 0 deletions.
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']);
});
}
}

0 comments on commit 0c29c0e

Please sign in to comment.