increments('id'); $table->string('name'); $table->string('token'); $table->text('options')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('stores'); } }