Updated labels_assigned label_id to not be unique
Updated labels_assigned label_id to not be unique
This commit is contained in:
parent
2d832f0159
commit
4563ccd471
|
@ -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);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user