wyyl/database/migrations/2022_07_27_123325_create_ma...

43 lines
1.0 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateManufacturers extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('brands', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->char('first');
$table->string('logo');
$table->integer('sort_order');
$table->integer('status');
$table->timestamps();
});
Schema::table('products', function (Blueprint $table) {
$table->unsignedInteger('brand_id')->after('id')->index();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('brands');
Schema::table('products', function (Blueprint $table) {
$table->dropColumn('brand_id');
});
}
}