increments('id'); $table->string('title', 1000)->nullable(); $table->text('description')->nullable(); $table->text('sort_desc')->nullable(); $table->string('meta_title', 500)->nullable(); $table->string('meta_description', 1000)->nullable(); $table->string('meta_keywords', 1000)->nullable(); $table->string('slug', 1000)->nullable(); $table->string('news_image', 1000)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('news'); } }