bigIncrements('id'); $table->unsignedBigInteger(config('subscribe.user_foreign_key'))->index()->comment('user_id'); $table->morphs('subscribable'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down() { Schema::dropIfExists(config('subscribe.subscriptions_table')); } }