File: /home/imensosw/liftcincy.imenso.co/database/migrations/2022_05_05_220504_create_sponsors_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateSponsorsTable extends Migration
{
public function up()
{
Schema::create('sponsors', function (Blueprint $table) {
$table->increments('id');
$table->string('sponsor_title');
$table->string('sponsor_url')->nullable();
$table->string('sponsor_image')->nullable();
$table->timestamps();
$table->softDeletes();
});
}
}