id(); $table->string('email'); $table->string('name')->nullable(); $table->timestamp('email_verified_at')->nullable(); $table->boolean('status')->nullable()->default(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('subscriptions'); } }