increments('id'); $table->text('text')->nullable(); $table->text('service_name')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('custom_services'); } }