sqlite - Laravel: PHP Artisan Tinker 'SQLSTATE[23000]' error -
so going through series of intro videos laravel , @ database migration part , struggling few things... here error... i have a) no idea means or referring first foray real command prompt usage , b) how fix it. any appreciated. regards. edit-1: here migration file... <?php use illuminate\database\schema\blueprint; use illuminate\database\migrations\migration; class createcardstable extends migration { /** * run migrations. * * @return void */ public function up() { schema::create('cards', function (blueprint $table) { $table->increments('id'); $table->string('title'); $table->timestamps(); }); } /** * reverse migrations. * * @return void */ public function down() { schema::drop('cards'); } } edit 2: here command prompt, working answer below, original laracast tutorial. it means have s...