increments('id'); $table->string('name'); $table->string('source', 100); $table->boolean('is_default'); $table->string('location'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('storages'); } }