increments('id'); $table->integer('user_id')->nullable(); $table->string('user_type', 100)->nullable(); $table->string('slug', 200)->nullable(); $table->string('name', 255)->nullable(); $table->text('description')->nullable(); $table->text('newsletter')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('newsletters'); } }