id(); $table->bigInteger('category_message_id')->unsigned(); $table->bigInteger('user_id')->unsigned(); $table->string('title'); $table->text('content'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('message'); } }