prefix('tokens'), function (Blueprint $table) { $table->id(); $table->string('token')->unique(); $table->string('handler'); $table->jsonb('data'); $table->timestamp('expire_at'); $table->timestamps(); }); } public function down() { Schema::dropIfExists($this->prefix('tokens')); } };