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