id(); $table->morphs('commentable'); $table->morphs('commenter'); $table->timestamp('created_at')->nullable(); $table->unique(['commentable_type', 'commentable_id', 'commenter_type', 'commenter_id'], 'comment_subscriptions_unique'); }); } };