Updated labels_assigned label_id to not be unique

Updated labels_assigned label_id to not be unique
This commit is contained in:
cp6 2022-03-02 01:11:44 +11:00
parent 2d832f0159
commit 4563ccd471

View File

@ -14,7 +14,7 @@ class CreateLabelsAssignedTable extends Migration
public function up() public function up()
{ {
Schema::create('labels_assigned', function (Blueprint $table) { Schema::create('labels_assigned', function (Blueprint $table) {
$table->char('label_id', 8)->unique(); $table->char('label_id', 8);
$table->char('service_id', 8); $table->char('service_id', 8);
}); });
} }