osb/database/migrations/2017_06_18_104531_create_ab_product_cat_translate_table.php
2018-06-18 21:18:34 +10:00

41 lines
978 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateAbProductCatTranslateTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('ab_product_cat_translate', function(Blueprint $table)
{
$table->integer('id')->default(0);
$table->integer('site_id')->default(0);
$table->integer('product_cat_id')->default(0);
$table->integer('language_id')->default(0)->index('fk_pct_lan_idx');
$table->string('name', 128)->nullable();
$table->binary('description', 65535)->nullable();
$table->primary(['id','site_id','product_cat_id','language_id'],'pk_unique');
$table->unique(['site_id','product_cat_id','language_id'], 'UNIQUE');
$table->index(['product_cat_id','site_id'], 'fk_pct_pc_idx');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('ab_product_cat_translate');
}
}