Mysql
 sql >> Database >  >> RDS >> Mysql

Laravel 1048 La colonna non può essere NULL durante la memorizzazione dei dati

Imposta valori predefiniti non null per le variabili di input.

$contact = new Contact;
$contact->name     = Input::get('name');
$contact->username = Input::get('username', '');
$contact->save();

Oppure, nelle versioni più recenti di Laravel:

$contact = new Contact;
$contact->name     = $request->input('name');
$contact->username = $request->input('username', '');
$contact->save();