for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTestimonialsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('testimonials', function (Blueprint $table) {
$table->id();
$table->string('code')->unique();
$table->string('name');
$table->string('image')->nullable();
$table->string('email')->unique();
$table->bigInteger('contact')->nullable();
$table->string('designation')->nullable();
$table->string('company')->nullable();
$table->text('body');
$table->integer('rating')->default(5);
$table->bigInteger('position')->default(1);
$table->boolean('approve')->default(1);
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('testimonials');