Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->boolean('is_active')->default(false);
$table->rememberToken();
$table->timestamps();
});
修改的评论也不能少于六个字哦!
0
分享