/
home
/
sjslayjy
/
public_html
/
mosaram
/
database
/
migrations
/
Upload File
HOME
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateBrandsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('brands', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('name')->nullable()->default(null); $table->integer('company_id')->nullable()->default(null); $table->integer('is_active')->nullable()->default(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('brands'); } }