increments('id'); $table->string('user_id', 30)->nullable(); $table->integer('object_id')->nullable(); $table->text('comment')->nullable(); $table->text('images')->nullable(); $table->enum('status', ['Online','Offline'])->nullable(); $table->text('slug')->nullable(); $table->string('user_type', 225)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('comments'); } }