%PDF- %PDF-
Direktori : /var/www/html/sljcon/database/migrations/ |
Current File : //var/www/html/sljcon/database/migrations/2018_08_26_153043_create_testimonials_table.php |
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateTestimonialsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('testimonials', function (Blueprint $table) { $table->increments('id'); $table->boolean('isApproved')->default(false); $table->boolean('isDeleted')->default(false); $table->text('description'); $table->string('fullName'); $table->string('jobPosition'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('testimonials'); } }