increments('id'); $table->string('domain'); $table->boolean('enabled')->default(1); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('companies'); } }