increments('id'); $table->integer('discussion_id')->unsigned(); $table->integer('number')->unsigned()->nullable(); $table->dateTime('time'); $table->integer('user_id')->unsigned()->nullable(); $table->string('type', 100)->nullable(); $table->text('content')->nullable(); $table->text('content_html')->nullable(); $table->dateTime('edit_time')->nullable(); $table->integer('edit_user_id')->unsigned()->nullable(); $table->dateTime('hide_time')->nullable(); $table->integer('hide_user_id')->unsigned()->nullable(); $table->unique(['discussion_id', 'number']); $table->engine = 'MyISAM'; }); app('db')->statement('ALTER TABLE posts ADD FULLTEXT content (content)'); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('posts'); } }