You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
841 B
PHP
37 lines
841 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateAdminsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('admins', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->bigInteger('hospital')->index();
|
|
$table->string('nickname', 30)->comment('名称');
|
|
$table->integer('admin_auth_id')->comment('权限ID');
|
|
$table->tinyInteger('status')->default(1)->comment('1-正常 2-禁用');
|
|
$table->tinyInteger('del')->default(2)->comment('1-删除 2-正常');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('admins');
|
|
}
|
|
}
|