edit auth

This commit is contained in:
2026-03-01 13:32:47 +08:00
parent 0d6d28e4ea
commit 7bed529850
8 changed files with 311 additions and 3 deletions

View File

@@ -0,0 +1,26 @@
<?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::table('users', function (Blueprint $table) {
if (!Schema::hasColumn('users', 'is_approved')) {
$table->boolean('is_approved')->default(false);
}
if (!Schema::hasColumn('users', 'token_version')) {
$table->integer('token_version')->default(1);
}
});
}
public function down(): void {}
};

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('employee_counters', function (Blueprint $table) {
$table->id();
$table->integer('year')->unique();
$table->integer('last_number')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('employee_counters');
}
};