问下长按是图片出现菜单项的时间在那调整,时间太长了
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了问下长按是图片出现菜单项的时间在那调整,时间太长了相关的知识,希望对你有一定的参考价值。
参考技术A 嗨!设置-开发者选项-窗口动画缩放-调到0.5
播种时出现 sql 错误 指定的密钥对于电子邮件来说太长了
【中文标题】播种时出现 sql 错误 指定的密钥对于电子邮件来说太长了【英文标题】:sql error when seeding Specified key was too long for email 【发布时间】:2018-01-26 13:57:31 【问题描述】:您好,我刚刚在 laravel 中启动了一个新项目,所以它是最新版本 5.4,在为单个用户播种到数据库时出现错误,并且出现此错误
[照亮\数据库\查询异常]
SQLSTATE [42000]:语法错误或访问冲突:1071 指定的键是 t
太长了;最大密钥长度为 1000 字节(SQL:alter table users
add unique
users_email_unique
(email
))
[PDO异常] SQLSTATE [42000]:语法错误或访问冲突:1071 指定的键是 t 太长了;最大密钥长度为 1000 字节
User::create([
'name' => 'someone'
'email' => 'someone@outlook.com',
'password' => bcrypt('mypassword'),
]);
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('users', function (Blueprint $table)
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->rememberToken();
$table->timestamps();
);
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
Schema::dropIfExists('users');
【问题讨论】:
Laravel migration: unique key is too long, even if specified的可能重复 您的问题似乎与上面的链接非常相似。 【参考方案1】:你应该这样尝试:
use Illuminate\Support\Facades\Schema; // At the top of your file
并在 AppServiceProvider 的 boot() 方法中添加这一行:
Schema::defaultStringLength(191);
【讨论】:
以上是关于问下长按是图片出现菜单项的时间在那调整,时间太长了的主要内容,如果未能解决你的问题,请参考以下文章