mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
[admin] add username change log
This commit is contained in:
@@ -16,6 +16,8 @@ return new class extends Migration
|
||||
Schema::create('username_change_logs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->integer('uid');
|
||||
$table->string('operator');
|
||||
$table->integer('change_type')->nullable(false)->default(0);
|
||||
$table->string('username_old');
|
||||
$table->string('username_new');
|
||||
$table->timestamps();
|
||||
|
||||
Reference in New Issue
Block a user