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

Laravel 1048 Column kan ikke være NULL ved lagring af data

Indstil standardværdier, der ikke er nul, for inputvariablen(erne).

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

Eller i nyere Laravel-versioner:

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


  1. Sådan fungerer Ln()-funktionen i PostgreSQL

  2. UTF-8:vises korrekt i databasen, dog ikke i HTML på trods af utf-8 tegnsæt

  3. MySQL vælg flere id på samme tid med php

  4. Spil 2.2 med Hibernate JPA og Postgres