Logged In: NO

Are you sure that's not PostgreSQL syntax? SEQUENCEs are
something original to PostgreSQL as far as I know, if you
wanted to rewrite the SQL you should know that a SEQUENCE is
a table that holds the value of the SERIAL value... similar
to MySQL's AUTOINCREMENT flag. So if you needed MySQL
support, just change the field type from SERIAL to INTEGER
AUTO INCREMENT or whatever their syntax is.