id('subscriber_id'); $table->string('title')->nullable(); $table->string('alias')->nullable(); $table->string('email')->nullable(); $table->integer('display_order')->default(1); $table->integer('status')->default(1); $table->integer('createdby')->nullable(); $table->integer('updatedby')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('subscribers'); } };