From 4563ccd471631572a74d7a4bd168ee45cdf0247c Mon Sep 17 00:00:00 2001 From: cp6 Date: Wed, 2 Mar 2022 01:11:44 +1100 Subject: [PATCH] Updated labels_assigned label_id to not be unique Updated labels_assigned label_id to not be unique --- .../2022_02_08_010323_create_labels_assigned_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2022_02_08_010323_create_labels_assigned_table.php b/database/migrations/2022_02_08_010323_create_labels_assigned_table.php index 44b809b..e0a4da8 100644 --- a/database/migrations/2022_02_08_010323_create_labels_assigned_table.php +++ b/database/migrations/2022_02_08_010323_create_labels_assigned_table.php @@ -14,7 +14,7 @@ class CreateLabelsAssignedTable extends Migration public function up() { Schema::create('labels_assigned', function (Blueprint $table) { - $table->char('label_id', 8)->unique(); + $table->char('label_id', 8); $table->char('service_id', 8); }); }