diff --git a/app/AuthToken.php b/app/AuthToken.php new file mode 100644 index 0000000..9e5558f --- /dev/null +++ b/app/AuthToken.php @@ -0,0 +1,15 @@ +id(); + $table->string('name', 255); + $table->string('token', 255)->unique(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('auth_tokens'); + } +}