id(); $table->string('name')->nullable($value=false); $table->string('city')->nullable($value=false); $table->string('phone')->nullable($value=true); $table->string('job')->nullable($value=true)->default($defaultjob); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('crud'); } }