id(); $table->string('name', 50); $table->dateTime('published_at'); $table->boolean('is_online')->default(false); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('books'); } }