Merge pull request #873 from rahulshukla-webkul/development
issue #865 description
This commit is contained in:
commit
55e19c32c5
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue