issue #865 description

This commit is contained in:
rahul shukla 2019-04-24 16:14:35 +05:30
parent 8b0787ad53
commit fb15e48c4d
2 changed files with 31 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class CreateProductFlatTable extends Migration
$table->integer('size_label')->nullable();
$table->date('created_at')->nullable();
$table->string('locale')->nullable();
$table->string('channel')->nullable();

View File

@ -0,0 +1,30 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AlterProductFlatTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('product_flat', function (Blueprint $table) {
$table->text('description')->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}