You do not need to specify mytable. Docs
SELECT id, user FROM mytable WHERE MATCH(user) AGAINST('alex') LIMIT 0, 25
For the mentioned error.
ALTER TABLE mytable ADD FULLTEXT index_name(user);
The full-text index must contain exactly the same number of columns in the same order as specified in the MATCH clause.
Here for more.