That's the point. It supports it within Access but won't create a table in SQL Server, for example.
The question related to Make Table which will create locally, hence CREATE INDEX applies.
Paste these into two separate queries and watch it work
CREATE TABLE FirstTable (FirstName TEXT, LastName TEXT);
CREATE UNIQUE INDEX Test ON FirstTable (FirstName, LastName) WITH DISALLOW NULL;
Craig