I need to migrate an old mysql table like this:
Products name (string, primary_key)
to this schema:
Products id (integer, p
If you're on Postgresql, the syntax is slightly different.
ALTER TABLE DROP CONSTRAINT _pkey;