increments('id'); $table->text('content')->nullable(); $table->enum('type', ['agency','brand-team','marketer','influencer','journalists','third-party_providers','onlineshops','regionalcompanies'])->nullable(); $table->integer('status')->nullable(); $table->text('slug')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('subscribe_contents'); } }