ufutx.dma/database/migrations/2023_01_07_094219_create_admins_table.php
2026-03-04 14:42:40 +08:00

38 lines
861 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('admins', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('mobile', 15)->unique();
$table->string('password');
$table->string('desc')->nullable();
$table->string('api_token', 100)->nullable();
$table->timestamp('expire_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('admins');
}
};