mivita/database/migrations/2018_10_21_163956_create_attributes_table.php
Kevin Adametz bfa3bb1df4 08 2024
2024-08-05 12:05:24 +02:00

44 lines
1,008 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateAttributesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('attributes', function (Blueprint $table) {
$table->increments('id');
$table->unsignedInteger('parent_id')->index()->nullable();
$table->string('name')->index();
$table->tinyInteger('pos')->unsigned()->nullable();
$table->boolean('active')->default(false);
$table->string('slug')->unique()->index();
$table->timestamps();
$table->foreign('parent_id')
->references('id')
->on('attributes');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('attributes');
}
}