Files
Docker/Productivite/Snipe-IT/database/migrations/2014_11_07_021042_add_image_to_supplier.php
2024-04-21 14:42:52 +02:00

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');
});
}
}