mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue