forked from aslan/applicant-site
fix unique table directions field name
This commit is contained in:
parent
6187bf360e
commit
f5638722a6
|
@ -10,7 +10,7 @@ return new class extends Migration
|
|||
{
|
||||
Schema::create('directions', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name', 255)->unique();
|
||||
$table->string('name', 255);
|
||||
$table->string('full_name', 255);
|
||||
$table->text('description')->nullable();
|
||||
$table->string('code', 255);
|
||||
|
|
Loading…
Reference in New Issue