32 lines
617 B
PHP
32 lines
617 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
class AddImageToSupplier extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('suppliers', function (Blueprint $table) {
|
|
$table->string('image')->nullable();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Revert the changes to the table.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('suppliers', function (Blueprint $table) {
|
|
$table->dropColumn('image');
|
|
});
|
|
}
|
|
}
|