bigIncrements('id');/////'c_name', 'c_phone', 'c_title', 'c_describe' $table->string('c_name'); $table->string('c_phone'); $table->string('c_title'); $table->string('c_describe'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contactuses'); } }