There is a similar post in stackoverflow, but it is very old, and It is not exactly the same question: how-to-make-contents-title-unique
I was trying to create a webpage as a Wiki. I began to work with MediaWiki but finally I changed to Drupal.
The idea is that the title of every Drupal node (independently of the content type created) has to be unique. I mean, There will not be aa identical title in the table "node" of Drupal.
One way to do this is to create a primary key in the column "title" of the table "node"; but modify the schema structure of Drupal always is not a good option
Other option is to use a module. I have found two of them:
This is very old and it is not on maintain: Unique field
And this one is better: Unique Content Title, the problem with this is that says that "Content title will be unique for each content type"
And I need that would be unique independently of the content type. Every node title has to be different, independently of the content type.
Do you know what could be the best choice?
Thank you in advance!