diff --git a/README.md b/README.md index adefa35..e0382ac 100644 --- a/README.md +++ b/README.md @@ -101,16 +101,9 @@ DB_USERNAME=your_username DB_PASSWORD=your_password ``` -### 5. #Install Laravel Sanctum +--- -**BELUM DIGUNAKAN** - -```bash -# Publish konfigurasi Sanctum -php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider" -``` - -### 6. Setup Database +### 5. Setup Database ```bash # Jalankan migrasi @@ -120,14 +113,14 @@ php artisan migrate php artisan db:seed ``` -### 7. Storage Link +### 6. Storage Link ```bash # Buat symbolic link untuk storage php artisan storage:link ``` -### 8. Jalankan Aplikasi +### 7. Jalankan Aplikasi #### Development Mode diff --git a/database/migrations/2025_08_25_043234_create_personal_access_tokens_table.php b/database/migrations/2025_08_25_043234_create_personal_access_tokens_table.php deleted file mode 100644 index 40ff706..0000000 --- a/database/migrations/2025_08_25_043234_create_personal_access_tokens_table.php +++ /dev/null @@ -1,33 +0,0 @@ -id(); - $table->morphs('tokenable'); - $table->text('name'); - $table->string('token', 64)->unique(); - $table->text('abilities')->nullable(); - $table->timestamp('last_used_at')->nullable(); - $table->timestamp('expires_at')->nullable()->index(); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('personal_access_tokens'); - } -}; diff --git a/database/migrations/2025_08_26_142702_create_personal_access_tokens_table.php b/database/migrations/2025_08_26_142702_create_personal_access_tokens_table.php deleted file mode 100644 index 40ff706..0000000 --- a/database/migrations/2025_08_26_142702_create_personal_access_tokens_table.php +++ /dev/null @@ -1,33 +0,0 @@ -id(); - $table->morphs('tokenable'); - $table->text('name'); - $table->string('token', 64)->unique(); - $table->text('abilities')->nullable(); - $table->timestamp('last_used_at')->nullable(); - $table->timestamp('expires_at')->nullable()->index(); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('personal_access_tokens'); - } -};