increments('id'); $table->longText('text')->nullable(); $table->string('to', 50)->nullable(); $table->text('topic')->nullable(); $table->bigInteger('frequency')->nullable(); $table->integer('template_id')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('mailings'); } }