https and sms job add

This commit is contained in:
Devit
2026-03-28 23:15:36 +05:00
parent fb03d05de9
commit c02f5d5bf8
6 changed files with 266 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('eskiz_tokens', function (Blueprint $table) {
$table->id();
$table->text('token');
$table->timestamp('expires_at');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('eskiz_tokens');
}
};