increments('id'); $table->string('title', 250)->nullable(); $table->text('description')->nullable(); $table->text('images')->nullable(); $table->text('image')->nullable(); $table->string('slug', 200)->nullable(); $table->enum('status', ['Show','Hide'])->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->integer('team_id')->nullable(); $table->string('upload_folder', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('news'); } }