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.

38 lines
921 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('nickname', 100);
$table->string('avatar', 200);
$table->tinyInteger('dev')->default(2)->comment('1-测试 2-普通');
$table->decimal('pay')->default(-1)->comment('支付金额 负数按实际金额支付');
$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('users');
}
}