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 CreateBooksTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('books', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('isbn')->unique();
$table->longText('authors');
$table->string('country');
$table->integer('number_of_pages');
$table->string('publisher');
$table->date('release_date');
$table->softDeletes();
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('books');