50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
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('attribute_type_id');
|
|
|
|
$table->unsignedInteger('parent_id')->index()->nullable();
|
|
$table->string('name')->index();
|
|
$table->text('trans_name')->nullable();
|
|
$table->tinyInteger('pos')->unsigned()->nullable();
|
|
$table->boolean('active')->default(true);
|
|
|
|
$table->string('slug')->unique()->index();
|
|
|
|
|
|
$table->timestamps();
|
|
|
|
$table->foreign('parent_id')
|
|
->references('id')
|
|
->on('attributes');
|
|
|
|
$table->foreign('attribute_type_id')
|
|
->references('id')
|
|
->on('attribute_types');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('attributes');
|
|
}
|
|
}
|