Use the correct method for a VARCHAR column
This commit is contained in:
parent
2c5c6e7753
commit
d33c43958a
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class CreateMediaEndpointTable extends Migration
|
||||||
Schema::create('media_endpoint', function (Blueprint $table) {
|
Schema::create('media_endpoint', function (Blueprint $table) {
|
||||||
$table->increments('id');
|
$table->increments('id');
|
||||||
$table->text('token')->nullable();
|
$table->text('token')->nullable();
|
||||||
$table->varchar('path');
|
$table->string('path');
|
||||||
$table->unsignedInteger('note_id')->nullable();
|
$table->unsignedInteger('note_id')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue