increments('id'); $table->integer('m_id')->default('0')->comment('m_id'); $table->string('username')->default('')->comment('username'); $table->string('content')->default('')->comment('content'); $table->string('reply')->default('')->comment('reply'); $table->integer('show')->default('0')->comment('show'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('messages'); } }