问题描述
当我尝试在数据库中创建新用户时遇到问题,如果我在phpmyadmin中添加用户,则没有问题,但是当我尝试在laravel网站中创建用户时,用户创建时出现以下错误:SQLSTATE [23000]:违反完整性约束:1062键"PRIMARY"的条目"15.236.964-5"重复我不知道这是问题所在,因为在数据库中不存在相同的主键.有问题的表是:
i have a problem when i try to create a new user in my database, if I add the users in phpmyadmin i have no problems, but when i try create users in my laravel web, the users has created with this error:SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '15.236.964-5' for key 'PRIMARY'I dont have idea which is the problem because in the database does not exist the same primary key.The table with problems is:
CREATE TABLE IF NOT EXISTS `users` (
`rut` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` char(60) COLLATE utf8_unicode_ci NOT NULL,
`edad` int(11) NOT NULL,
`pais` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`comuna` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`sector` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`tipo` enum('profesor','alumno','administrador_parrilla','administrador_sistema','externo') COLLATE utf8_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
ALTER TABLE `users`
ADD PRIMARY KEY (`rut`),
ADD UNIQUE KEY `usuario_rut_unique` (`rut`),
ADD UNIQUE KEY `usuario_email_unique` (`email`);
我的控制器:
class UsuarioController extends Controller
{
public function index(){
$users = User::All();
return view('usuario.index', compact('users'));
}
public function create(){
return view('usuario.create');
}
public function store(Request $request) {
User::create([
'name' => $request['name'],
'rut' => $request['rut'],
'email' => $request['email'],
'password' => bcrypt($request['password']),
'edad' => $request['edad'],
'pais' => $request['pais'],
'comuna' => $request['comuna'],
]);
User::create($request->all());
return redirect('/usuario')->with('message', 'store');
}
public function edit($rut){
$user = User::find($rut);
return view ('usuario.edit',['user'=>$user]);
}
public function update($id, Request $request){
$user = User::find($id);
$user -> fill($request->all());
$user -> save();
Session::flash('message', 'Usuario Editado Correctamente');
return Redirect ('/usuario');
}
}
我的模特:
class User extends Authenticatable
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $table = "users";
protected $fillable = [
'rut', 'name', 'email', 'password', 'edad', 'pais', 'comuna', 'sector', 'tipo',
];
/**
protected $primaryKey = 'rut';
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
}
我无法通过添加auto_increment来更改主键,因为我使用"Rut"作为主键,这是智利人的识别码.
I can't change the primary key adding auto_increment because i use the "Rut" as a primary key who is the code of identification to people in Chile.
推荐答案
问题出在控制器中的一行代码.解决方案只是对以下行发表评论:
The problem was a line of code in the controller. The solution was simply to comment this line:
User::create($request->all());
感谢您的回答.
这篇关于Laravel-违反完整性约束:1062复制条目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!