increments('id'); $table->string('newsheader', 255)->nullable(); $table->integer('newstype')->nullable(); $table->text('newsdescription')->nullable(); $table->integer('language')->nullable(); $table->integer('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('latest_news'); } }