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