engine = 'InnoDB'; $table->increments('id'); $table->string('title')->nullable(); $table->string('slug')->nullable()->index(); $table->text('description')->nullable(); $table->boolean('is_published')->default(false); $table->timestamp('published_at')->nullable(); $table->integer('author_id')->unsigned()->index()->nullable(); $table->softDeletes(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('database_tester_posts'); } }